From 29b13feedb73b8d4007997626f6384d26f3eaeb6 Mon Sep 17 00:00:00 2001 From: gzeon Date: Tue, 27 Aug 2024 18:27:22 +0900 Subject: [PATCH] ci: use more recent goomy-blob --- test/contract/toolkit4844.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/contract/toolkit4844.ts b/test/contract/toolkit4844.ts index 258a2400..ce64dd44 100644 --- a/test/contract/toolkit4844.ts +++ b/test/contract/toolkit4844.ts @@ -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)