Browse Source

Expose getter for txIndexer (#6327)

pull/6344/head
Nate Williams 3 years ago
committed by GitHub
parent
commit
b517dd5685
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      node/node.go

+ 5
- 0
node/node.go View File

@ -1707,6 +1707,11 @@ func (n *Node) Config() *cfg.Config {
return n.config
}
// TxIndexer returns the Node's TxIndexer.
func (n *Node) TxIndexer() txindex.TxIndexer {
return n.txIndexer
}
//------------------------------------------------------------------------------
func (n *Node) Listeners() []string {


Loading…
Cancel
Save