rpc/test: restore txindexer after setting null

This commit is contained in:
Ethan Buchman 2017-04-13 16:38:44 -04:00
parent c648bd5b31
commit 16bffdf7ab
1 changed files with 5 additions and 2 deletions

View File

@ -156,15 +156,18 @@ func testBroadcastTxCommit(t *testing.T, client rpc.HTTPClient) {
func TestURITx(t *testing.T) {
testTx(t, GetURIClient(), true)
core.SetTxIndexer(&indexer.Null{})
testTx(t, GetJSONClient(), false)
core.SetTxIndexer(node.ConsensusState().GetState().TxIndexer)
}
func TestJSONTx(t *testing.T) {
testTx(t, GetJSONClient(), true)
}
func TestZZZZTxNoIndexer(t *testing.T) {
core.SetTxIndexer(&indexer.Null{})
testTx(t, GetJSONClient(), false)
core.SetTxIndexer(node.ConsensusState().GetState().TxIndexer)
}
func testTx(t *testing.T, client rpc.HTTPClient, withIndexer bool) {