Skip to content

Commit

Permalink
fix first streamable block is missing default value
Browse files Browse the repository at this point in the history
  • Loading branch information
fschoell committed Sep 18, 2023
1 parent 7ef2b9a commit a5be8fa
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cmd/fireantelope/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,13 @@ func main() {
firecore.Main(&firecore.Chain[*pbantelope.Block]{
ShortName: "antelope",
LongName: "Antelope",
ExecutableName: "antelope-firehose-indexer",
ExecutableName: "nodeos",
FullyQualifiedModule: "github.com/pinax-network/firehose-antelope",
Version: version,

Protocol: "EOS",
ProtocolVersion: 1,
Protocol: "EOS",
ProtocolVersion: 1,
FirstStreamableBlock: 2,

BlockFactory: func() firecore.Block { return new(pbantelope.Block) },

Expand Down

0 comments on commit a5be8fa

Please sign in to comment.