Fixed RPC client tests

This commit is contained in:
Matt Bell
2017-01-07 14:35:54 -08:00
parent 0204d3c6a6
commit 1532879c64
+2 -2
View File
@@ -134,7 +134,7 @@ func TestURITMSPQuery(t *testing.T) {
k, v := sendTx()
time.Sleep(time.Second)
tmResult := new(ctypes.TMResult)
_, err := clientURI.Call("tmsp_query", map[string]interface{}{"query": Fmt("%X", k)}, tmResult)
_, err := clientURI.Call("tmsp_query", map[string]interface{}{"query": k}, tmResult)
if err != nil {
panic(err)
}
@@ -144,7 +144,7 @@ func TestURITMSPQuery(t *testing.T) {
func TestJSONTMSPQuery(t *testing.T) {
k, v := sendTx()
tmResult := new(ctypes.TMResult)
_, err := clientJSON.Call("tmsp_query", []interface{}{Fmt("%X", k)}, tmResult)
_, err := clientJSON.Call("tmsp_query", []interface{}{k}, tmResult)
if err != nil {
panic(err)
}