Skip to content

Commit ff85ef2

Browse files
committed
specific wormhole commit hash
1 parent 9ef4ada commit ff85ef2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Tiltfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
load('ext://namespace', 'namespace_create', 'namespace_inject')
22
load('ext://git_resource', 'git_checkout')
33

4-
git_checkout('https://github.com/wormhole-foundation/wormhole.git#main', '.wormhole/', unsafe_mode=True)
4+
git_checkout('https://github.com/wormhole-foundation/wormhole.git#b78317b9b5fbf2bd583e560bee5b351d6677fc42', '.wormhole/', unsafe_mode=True)
55
local(['sed','-i','/{chainId: vaa.ChainIDEthereum, addr: "0000000000000000000000006f84742680311cef5ba42bc10a71a4708b4561d1"},/i \\\\t\\t\\t{chainId: vaa.ChainIDSolana, addr: "8bf0b547c96edc5c1d512ca25c5c1d1812a180438a0046e511d1fb61561d5cdf"},\\n\\t\\t\\t{chainId: vaa.ChainIDSolana, addr: "0a490691c21334ca173d9ce386e2a86774ce173f351db10d5d0cccc5c4875376"},\\n\\t\\t\\t{chainId: vaa.ChainIDEthereum, addr: "000000000000000000000000c5afe31ae505594b190ac71ea689b58139d1c354"},\\n\\t\\t\\t{chainId: vaa.ChainIDEthereum, addr: "0000000000000000000000008be8dfcdc90f50562b5022de1f8d83fe93b0b055"},\\n\\t\\t\\t{chainId: vaa.ChainIDBSC, addr: "0000000000000000000000006f84742680311cef5ba42bc10a71a4708b4561d1"},\\n\\t\\t\\t{chainId: vaa.ChainIDBSC, addr: "00000000000000000000000071e7ec880873af0fe33ad988f862be200fdd85cc"},', '.wormhole/node/pkg/accountant/ntt_config.go'])
66

77
load(".wormhole/Tiltfile", "namespace", "k8s_yaml_with_ns")

sdk/__tests__/utils.ts

+2
Original file line numberDiff line numberDiff line change
@@ -312,11 +312,13 @@ async function waitForRelay(
312312
const successBlock = await wormholeRelayer.deliverySuccessBlock(
313313
deliveryHash
314314
);
315+
console.log("Checking for single hash: ", successBlock);
315316
if (successBlock > 0) success = true;
316317

317318
const altSuccessBlock = await wormholeRelayer.deliverySuccessBlock(
318319
keccak256(deliveryHash)
319320
);
321+
console.log("Checking for double hash: ", altSuccessBlock);
320322
if (altSuccessBlock > 0) success = true;
321323
} catch (e) {
322324
console.error(e);

0 commit comments

Comments
 (0)