Skip to content

Commit fb06d45

Browse files
greged93frisitano
andauthored
feat: consensus signer (#113)
* feat: add system contract provider * feat: modify consensus trait to allow for updates * feat: integrate in watcher * feat: add node config * feat: improve PoAConsensus interface * feat: bump reth * feat: extend node config (#115) * feat: add l1 start block to the node config * feat: RN as scroll addon (#111) * feat: refactor for node addons * merge upstream * lint * improvements * merge main * lint * lint * feedback * feat: merge changes * feat: merge changes --------- Co-authored-by: frisitano <[email protected]> --------- Co-authored-by: frisitano <[email protected]>
1 parent ef89705 commit fb06d45

File tree

23 files changed

+221
-323
lines changed

23 files changed

+221
-323
lines changed

Cargo.lock

Lines changed: 8 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/rollup/src/network.rs

Lines changed: 0 additions & 242 deletions
This file was deleted.

crates/indexer/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ impl<ChainSpec: ScrollHardforks + EthChainSpec + Send + Sync + 'static> Indexer<
7777
L1Notification::Reorg(block_number) => IndexerFuture::HandleReorg(Box::pin(
7878
Self::handle_l1_reorg(self.database.clone(), self.chain_spec.clone(), block_number),
7979
)),
80-
L1Notification::NewBlock(_block_number) => return,
80+
L1Notification::NewBlock(_) | L1Notification::Consensus(_) => return,
8181
L1Notification::Finalized(block_number) => {
8282
IndexerFuture::HandleFinalized(Box::pin(Self::handle_finalized(
8383
self.database.clone(),

0 commit comments

Comments
 (0)