Skip to content

Commit

Permalink
fix: fix an issue in SetRemoteBridgeSuites
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Dec 3, 2023
1 parent 337c57c commit 1783b5e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/protocol/script/SetRemoteBridgeSuites.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,10 @@ contract SetRemoteBridgeSuites is DeployCapability {
bytes32 salt = bytes32(block.timestamp);

bytes memory payload = abi.encodeWithSelector(
bytes4(keccak256("setAddress(uint64,bytes32,address)")), name, addr, chainId
bytes4(keccak256("setAddress(uint64,bytes32,address)")),
chainId,
bytes32(bytes(name)),
addr
);

TaikoTimelockController timelock = TaikoTimelockController(payable(timelockAddress));
Expand Down

0 comments on commit 1783b5e

Please sign in to comment.