fixes for tools repo merge (#1945)

fixes for tools repo merge (#1943)
This commit is contained in:
Zach
2018-07-10 16:42:27 -04:00
committed by GitHub
parent 44dad6d70b
commit 8ce588d984
19 changed files with 186 additions and 312 deletions

View File

@@ -4,9 +4,9 @@ import (
stdlog "log"
"reflect"
"github.com/tendermint/tmlibs/log"
em "github.com/tendermint/tools/tm-monitor/eventmeter"
"github.com/tendermint/go-amino"
"github.com/tendermint/tendermint/libs/log"
em "github.com/tendermint/tendermint/tools/tm-monitor/eventmeter"
)
type EventMeter struct {
@@ -44,7 +44,7 @@ func (e *EventMeter) Call(callback string, args ...interface{}) {
type RpcClient struct {
Stubs map[string]interface{}
cdc *amino.Codec
cdc *amino.Codec
}
func (c *RpcClient) Call(method string, params map[string]interface{}, result interface{}) (interface{}, error) {
@@ -66,4 +66,4 @@ func (c *RpcClient) Codec() *amino.Codec {
func (c *RpcClient) SetCodec(cdc *amino.Codec) {
c.cdc = cdc
}
}