Correct GetRawMempoolResult types.
The StartingPriority and CurrentPriority fields of the GetRawMempoolResult are float64s instead of ints.
This commit is contained in:
parent
997d98bddf
commit
1349f96d8e
1 changed files with 2 additions and 2 deletions
|
@ -91,8 +91,8 @@ type GetRawMempoolResult struct {
|
||||||
Fee float64 `json:"fee"`
|
Fee float64 `json:"fee"`
|
||||||
Time int64 `json:"time"`
|
Time int64 `json:"time"`
|
||||||
Height int64 `json:"height"`
|
Height int64 `json:"height"`
|
||||||
StartingPriority int `json:"startingpriority"`
|
StartingPriority float64 `json:"startingpriority"`
|
||||||
CurrentPriority int `json:"currentpriority"`
|
CurrentPriority float64 `json:"currentpriority"`
|
||||||
Depends []string `json:"depends"`
|
Depends []string `json:"depends"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue