Skip to content

Commit

Permalink
Fix deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
mdehoog committed Oct 2, 2024
1 parent 228c376 commit f4e28c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OutputOracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ contract OutputOracle is Initializable, ISemver {
}

function proposer() public view returns (address) {
address _proposer = systemConfig.proposer();
address _proposer = address(systemConfig) != address(0) ? systemConfig.proposer() : address(0);
return _proposer != address(0) ? _proposer : systemConfigGlobal.proposer();
}

Expand Down

0 comments on commit f4e28c3

Please sign in to comment.