Skip to content

Commit

Permalink
fix set_broadcast
Browse files Browse the repository at this point in the history
  • Loading branch information
ncitron committed Aug 1, 2022
1 parent 7b91e93 commit 8f1a1e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HuffConfig.sol
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ contract HuffConfig {

/// @notice sets whether to broadcast the deployment
function set_broadcast(bool broadcast) public returns (HuffConfig) {
should_broadcast = true;
should_broadcast = broadcast;
return this;
}

Expand Down

0 comments on commit 8f1a1e6

Please sign in to comment.