Skip to content

Commit 9c2e268

Browse files
committed
use 0 address in deploy script
1 parent 9eecff1 commit 9c2e268

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/manifold/script/CrossChainBurn.s.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ contract DeployCrossChainBurn is Script {
3232
vm.startBroadcast(deployerPrivateKey);
3333
// forge script script/CrossChainBurn.s.sol --optimizer-runs 1000 --rpc-url <YOUR_NODE> --broadcast
3434
// forge verify-contract --compiler-version 0.8.17 --optimizer-runs 1000 --chain sepolia <DEPLOYED_ADDRESS> contracts/physicalclaim/CrossChainBurn.sol:CrossChainBurn --constructor-args $(cast abi-encode "constructor(address,address)" "${INITIAL_OWNER}" "0x0000000000000000000000000000000000000000") --watch
35-
new CrossChainBurn{salt: 0x4c657427732067657420506879736963616c2000000000000000000000000000}(initialOwner, address(0x572EF7F0425002a458CcC10c402cd51456e072E3));
35+
new CrossChainBurn{salt: 0x4c657427732067657420506879736963616c2000000000000000000000000000}(initialOwner, address(0));
3636
vm.stopBroadcast();
3737
}
3838
}

0 commit comments

Comments
 (0)