Skip to content

Commit

Permalink
fix env variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
mkl- committed Jun 20, 2024
1 parent ae8c7bc commit d79ad32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/SetSeed.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ contract SetSeed is Script, AddressReaderWriter {
console.log("BTC_ADDR2:", btcAddr2);

// get network
uint _network = vm.envUint("Network");
uint _network = vm.envUint("BTC_NETWORK");
uint8 network = uint8(_network);

console.log("Network:", network);
console.log("BTC_NETWORK:", network);

BTCDepositAddressDeriver deriver = BTCDepositAddressDeriver(
contractAddress
Expand Down

0 comments on commit d79ad32

Please sign in to comment.