6 lines
89 B
Go
6 lines
89 B
Go
package rpc
|
|
|
|
type RPCClient interface {
|
|
GetTransaction(txHash string) ([]byte, error)
|
|
}
|