Skip to content

Commit fda6555

Browse files
committed
evm: fix 4byte prefixes after rename
1 parent 069006b commit fda6555

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

evm/src/WormholeTransceiver.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ contract WormholeTransceiver is Transceiver, IWormholeTransceiver, IWormholeRece
2626

2727
/// @dev Prefix for all Wormhole transceiver initialisation payloads
2828
/// This is bytes4(keccak256("WormholeTransceiverInit"))
29-
bytes4 constant WH_TRANSCEIVER_INIT_PREFIX = 0xc83e3d2e;
29+
bytes4 constant WH_TRANSCEIVER_INIT_PREFIX = 0x9c23bd3b;
3030

3131
/// @dev Prefix for all Wormhole peer registration payloads
3232
/// This is bytes4(keccak256("WormholePeerRegistration"))
33-
bytes4 constant WH_PEER_REGISTRATION_PREFIX = 0xd0d292f1;
33+
bytes4 constant WH_PEER_REGISTRATION_PREFIX = 0x18fc67c2;
3434

3535
IWormhole public immutable wormhole;
3636
IWormholeRelayer public immutable wormholeRelayer;

0 commit comments

Comments
 (0)