11 lines
299 B
Go
Executable File
11 lines
299 B
Go
Executable File
package result
|
|
|
|
import "git.marketally.com/tutus-one/tutus-chain/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"`
|
|
}
|