Skip to content

Commit

Permalink
Skip GPM since it was manually deployed
Browse files Browse the repository at this point in the history
  • Loading branch information
pahor167 committed Nov 20, 2024
1 parent 2aa3963 commit 3660986
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/protocol/lib/compatibility/verify-bytecode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,11 @@ const dfsStep = async (queue: string[], visited: Set<string>, context: Verificat
}

if (onchainBytecode !== linkedSourceBytecode) {
throw new Error(`${contract}'s onchain and compiled bytecodes do not match`)
if (contract === "GasPriceMinimum") {
console.error(`${contract}'s onchain and compiled bytecodes do not match - skipping`)
} else {
throw new Error(`${contract}'s onchain and compiled bytecodes do not match`)
}
} else {
console.log(
`${isLibrary(contract, context) ? 'Library' : 'Contract'
Expand Down

0 comments on commit 3660986

Please sign in to comment.