dione/rpc/rpc.go
2020-11-18 22:33:03 +04:00

6 lines
89 B
Go

package rpc
type RPCClient interface {
GetTransaction(txHash string) ([]byte, error)
}