forked from TrueCloudLab/neoneo-go
1e0750e3cd
Move result there also.
10 lines
286 B
Go
10 lines
286 B
Go
package result
|
|
|
|
import "github.com/nspcc-dev/neo-go/pkg/util"
|
|
|
|
// RawMempool represents a result of getrawmempool RPC call.
|
|
type RawMempool struct {
|
|
Height uint32 `json:"height"`
|
|
Verified []util.Uint256 `json:"verified"`
|
|
Unverified []util.Uint256 `json:"unverified"`
|
|
}
|