dione/rpc/rpc.go

6 lines
89 B
Go
Raw Normal View History

package rpc
2020-11-18 18:33:03 +00:00
type RPCClient interface {
GetTransaction(txHash string) ([]byte, error)
}