Skip to content

Commit

Permalink
update sims
Browse files Browse the repository at this point in the history
  • Loading branch information
g11tech committed Oct 20, 2023
1 parent 0868455 commit 468c4cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/client/test/sim/simutils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function stringifyQuery(query: unknown): string {
}

// Initialize the kzg object with the kzg library
initKZG(kzg, __dirname + '/../../src/trustedSetups/devnet6.txt')
initKZG(kzg, __dirname + '/../../src/trustedSetups/official.txt')

export async function waitForELOnline(client: Client): Promise<string> {
for (let i = 0; i < 15; i++) {
Expand Down
2 changes: 1 addition & 1 deletion packages/client/test/sim/txGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const MAX_BLOBS_PER_TX = 2
const MAX_USEFUL_BYTES_PER_TX = USEFUL_BYTES_PER_BLOB * MAX_BLOBS_PER_TX - 1
const BLOB_SIZE = BYTES_PER_FIELD_ELEMENT * FIELD_ELEMENTS_PER_BLOB

initKZG(kzg, __dirname + '/../../src/trustedSetup/devnet4.txt')
initKZG(kzg, __dirname + '/../../src/trustedSetups/official.txt')
const pkey = hexToBytes('0x45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8')
const sender = Address.fromPrivateKey(pkey)

Expand Down

0 comments on commit 468c4cc

Please sign in to comment.