diff --git a/node/node.go b/node/node.go index 9a81992d6..3dee65d8d 100644 --- a/node/node.go +++ b/node/node.go @@ -200,6 +200,10 @@ func (n *Node) Switch() *p2p.Switch { return n.sw } +func (n *Node) BlockStore() *bc.BlockStore { + return n.blockStore +} + func (n *Node) ConsensusState() *consensus.ConsensusState { return n.consensusState }