update GetMempoolEntryResult to v0.19.0
https://bitcoincore.org/en/doc/0.19.0/rpc/blockchain/getmempoolentry/
This commit is contained in:
parent
d9ce6b037f
commit
a8eadd2ce4
1 changed files with 26 additions and 14 deletions
|
@ -234,22 +234,34 @@ type GetBlockTemplateResult struct {
|
||||||
RejectReasion string `json:"reject-reason,omitempty"`
|
RejectReasion string `json:"reject-reason,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetMempoolEntryResult models the data returned from the getmempoolentry's
|
||||||
|
// fee field
|
||||||
|
|
||||||
|
type MempoolFees struct {
|
||||||
|
Base float64 `json:"base"`
|
||||||
|
Modified float64 `json:"base"`
|
||||||
|
Ancestor float64 `json:"ancestor"`
|
||||||
|
Descendant float64 `json:"descendant"`
|
||||||
|
}
|
||||||
|
|
||||||
// GetMempoolEntryResult models the data returned from the getmempoolentry
|
// GetMempoolEntryResult models the data returned from the getmempoolentry
|
||||||
// command.
|
// command.
|
||||||
type GetMempoolEntryResult struct {
|
type GetMempoolEntryResult struct {
|
||||||
|
VSize int32 `json:"vsize"`
|
||||||
Size int32 `json:"size"`
|
Size int32 `json:"size"`
|
||||||
|
Weight int64 `json:"weight"`
|
||||||
Fee float64 `json:"fee"`
|
Fee float64 `json:"fee"`
|
||||||
ModifiedFee float64 `json:"modifiedfee"`
|
ModifiedFee float64 `json:"modifiedfee"`
|
||||||
Time int64 `json:"time"`
|
Time int64 `json:"time"`
|
||||||
Height int64 `json:"height"`
|
Height int64 `json:"height"`
|
||||||
StartingPriority float64 `json:"startingpriority"`
|
|
||||||
CurrentPriority float64 `json:"currentpriority"`
|
|
||||||
DescendantCount int64 `json:"descendantcount"`
|
DescendantCount int64 `json:"descendantcount"`
|
||||||
DescendantSize int64 `json:"descendantsize"`
|
DescendantSize int64 `json:"descendantsize"`
|
||||||
DescendantFees float64 `json:"descendantfees"`
|
DescendantFees float64 `json:"descendantfees"`
|
||||||
AncestorCount int64 `json:"ancestorcount"`
|
AncestorCount int64 `json:"ancestorcount"`
|
||||||
AncestorSize int64 `json:"ancestorsize"`
|
AncestorSize int64 `json:"ancestorsize"`
|
||||||
AncestorFees float64 `json:"ancestorfees"`
|
AncestorFees float64 `json:"ancestorfees"`
|
||||||
|
WTxId string `json:"wtxid"`
|
||||||
|
Fees MempoolFees `json:"fees"`
|
||||||
Depends []string `json:"depends"`
|
Depends []string `json:"depends"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue