Skip to content

Commit

Permalink
chore: removed relic protocol check for devnet
Browse files Browse the repository at this point in the history
  • Loading branch information
merklefruit committed May 27, 2024
1 parent 0241755 commit 7d7e30e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions bolt-contracts/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
cache/
out/
broadcast/
5 changes: 3 additions & 2 deletions bolt-contracts/src/contracts/BoltChallenger.sol
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,9 @@ contract BoltChallenger is IBoltChallenger {
reliquary = IReliquary(_reliquary);

// Check if the provided provers are valid
reliquary.checkProver(reliquary.provers(_blockHeaderProver));
reliquary.checkProver(reliquary.provers(_accountInfoProver));
// TODO: readd this for mainnet deployment (currently disabled for testing)
// reliquary.checkProver(reliquary.provers(_blockHeaderProver));
// reliquary.checkProver(reliquary.provers(_accountInfoProver));

blockHeaderProver = IProver(_blockHeaderProver);
accountInfoProver = IProver(_accountInfoProver);
Expand Down

0 comments on commit 7d7e30e

Please sign in to comment.