Skip to content

Commit

Permalink
minor fixes and prettier (#1550)
Browse files Browse the repository at this point in the history
  • Loading branch information
sparrowDom authored May 26, 2023
1 parent 0eb2147 commit 75ff573
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion contracts/contracts/oracle/OracleRouter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ abstract contract OracleRouterBase is IOracle {

uint256 internal constant MIN_DRIFT = 0.7e18;
uint256 internal constant MAX_DRIFT = 1.3e18;
address internal constant FIXED_PRICE = 0x0000000000000000000000000000000000000001;
address internal constant FIXED_PRICE =
0x0000000000000000000000000000000000000001;
// Maximum allowed staleness buffer above normal Oracle maximum staleness
uint256 internal constant STALENESS_BUFFER = 1 days;
mapping(address => uint8) internal decimalsCache;
Expand Down
2 changes: 1 addition & 1 deletion contracts/utils/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ const handlePossiblyActiveGovernanceProposal = async (

if (["Pending", "Active", "Succeeded", "Queued"].includes(proposalState)) {
console.log(
`Found proposal id: ${proposalId} on forked network. Executing proposal containing deployment of: ${deployName}`
`Found proposal id: ${proposalId} on forked network with ${proposalState} state. Executing proposal containing deployment of: ${deployName}`
);

await executeGovernanceProposalOnFork({
Expand Down

0 comments on commit 75ff573

Please sign in to comment.