forked from TrueCloudLab/neoneo-go
11 lines
286 B
Go
11 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"`
|
||
|
}
|