mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-28 09:31:34 +00:00
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"`
|
||
|
}
|