mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +00:00
Refactored parameter to global
This commit is contained in:
parent
f97c6ad585
commit
cccc2d80d9
1 changed files with 4 additions and 4 deletions
|
|
@ -258,12 +258,12 @@ func NewFirehose(config *FirehoseConfig) *Firehose {
|
||||||
tracerID: "global",
|
tracerID: "global",
|
||||||
applyBackwardCompatibility: config.ApplyBackwardCompatibility,
|
applyBackwardCompatibility: config.ApplyBackwardCompatibility,
|
||||||
concurrentBlockFlushing: config.ConcurrentBlockFlushing,
|
concurrentBlockFlushing: config.ConcurrentBlockFlushing,
|
||||||
|
concurrentFlushBufferSize: 100,
|
||||||
|
|
||||||
// Block state
|
// Block state
|
||||||
blockOrdinal: &Ordinal{},
|
blockOrdinal: &Ordinal{},
|
||||||
blockFinality: &FinalityStatus{},
|
blockFinality: &FinalityStatus{},
|
||||||
blockReorderOrdinal: false,
|
blockReorderOrdinal: false,
|
||||||
concurrentFlushBufferSize: 100,
|
|
||||||
|
|
||||||
// Transaction state
|
// Transaction state
|
||||||
transactionLogIndex: 0,
|
transactionLogIndex: 0,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue