Skip to content

Commit

Permalink
ci: use more recent goomy-blob
Browse files Browse the repository at this point in the history
  • Loading branch information
gzeoneth committed Aug 27, 2024
1 parent 71f1cff commit 29b13fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/contract/toolkit4844.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export class Toolkit4844 {
data: string
) {
const blobStr = blobs.reduce((acc, blob) => acc + ' -b ' + blob, '')
const blobCommand = `docker run --network=nitro-testnode_default ethpandaops/goomy-blob@sha256:8fd6dfe19bedf43f485f1d5ef3db0a0af569c1a08eacc117d5c5ba43656989f0 blob-sender -p ${privKey} -r http://geth:8545 -t ${to} -d ${data} --gaslimit 1000000${blobStr} 2>&1`
const blobCommand = `docker run --network=nitro-testnode_default ethpandaops/goomy-blob@master-91c1ad7 blob-sender -p ${privKey} -r http://geth:8545 -t ${to} -d ${data} --gaslimit 1000000${blobStr} 2>&1`
const res = execSync(blobCommand).toString()
const txHashRegex = /0x[a-fA-F0-9]{64}/
const match = res.match(txHashRegex)
Expand Down

0 comments on commit 29b13fe

Please sign in to comment.