Skip to content

Commit

Permalink
Revert "fix: skip broadcasting"
Browse files Browse the repository at this point in the history
This reverts commit ac9ab59.
  • Loading branch information
nvitorovic committed Jan 21, 2025
1 parent ac9ab59 commit bc3390a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/foundry-ci-cd-multi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ jobs:
--verifier-url ${{ env.TENDERLY_FOUNDRY_VERIFICATION_URL_1 }} \
--etherscan-api-key $TENDERLY_ACCESS_KEY \
--slow \
--broadcast \
--verify \
--json > $BUILD_OUTPUT_FILE_1
Expand All @@ -73,5 +74,6 @@ jobs:
--verifier-url ${{ env.TENDERLY_FOUNDRY_VERIFICATION_URL_8453 }} \
--etherscan-api-key $TENDERLY_ACCESS_KEY \
--slow \
--broadcast \
--verify \
--json > $BUILD_OUTPUT_FILE_8453
4 changes: 4 additions & 0 deletions examples/foundry/script/Counter.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@ contract CounterScript is Script {
function setUp() public {}

function run() public {
vm.startBroadcast();

counter = new Counter();
counter = new Counter();
counter = new Counter();
counter = new Counter();

vm.stopBroadcast();
}
}

0 comments on commit bc3390a

Please sign in to comment.