We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc70996 commit d5c7d98Copy full SHA for d5c7d98
cmd/hivechain/output.go
@@ -115,7 +115,7 @@ func (g *generator) writeChain() error {
115
}
116
defer out.Close()
117
lastBlock := g.blockchain.CurrentBlock().Number.Uint64()
118
- return exportN(g.blockchain, out, 0, lastBlock)
+ return exportN(g.blockchain, out, 1, lastBlock)
119
120
121
// writePoWChain writes pre-merge RLP blocks to a file.
@@ -130,7 +130,7 @@ func (g *generator) writePoWChain() error {
130
if !ok {
131
lastBlock = g.blockchain.CurrentBlock().Number.Uint64()
132
133
134
135
136
func (g *generator) mergeBlock() (uint64, bool) {
0 commit comments