diff --git a/node/store/hypergraph.go b/node/store/hypergraph.go index ea6abaa..5804566 100644 --- a/node/store/hypergraph.go +++ b/node/store/hypergraph.go @@ -710,7 +710,10 @@ func (p *PebbleHypergraphStore) LoadHypergraph() ( txn.Abort() return err } - txn = nil + txn, err = p.NewTransaction(false) + if err != nil { + return err + } } } if txn != nil {