forked from TrueCloudLab/neoneo-go
1e0750e3cd
Move result there also.
8 lines
203 B
Go
8 lines
203 B
Go
package result
|
|
|
|
import "github.com/nspcc-dev/neo-go/pkg/util"
|
|
|
|
// RelayResult ia a result of `sendrawtransaction` or `submitblock` RPC calls.
|
|
type RelayResult struct {
|
|
Hash util.Uint256 `json:"hash"`
|
|
}
|