We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 921807b commit 7d95f46Copy full SHA for 7d95f46
timeboost/src/lib.rs
@@ -113,9 +113,9 @@ impl Timeboost {
113
error!(?err, "fail to get chainid");
114
err
115
})?;
116
- // local test chain don't have finality gadget, thus don't support `Finalized` tag
117
let tag = if chain_id == 31337 || chain_id == 1337 {
118
- BlockNumberOrTag::Latest
+ // local test chain, we start scanning from the genesis
+ BlockNumberOrTag::Number(0)
119
} else {
120
BlockNumberOrTag::Finalized
121
};
0 commit comments