Correct GetRawMempoolResult types.

The StartingPriority and CurrentPriority fields of the GetRawMempoolResult
are float64s instead of ints.
This commit is contained in:
Dave Collins 2014-04-18 12:35:37 -05:00
parent 997d98bddf
commit 1349f96d8e

View file

@ -91,8 +91,8 @@ type GetRawMempoolResult struct {
Fee float64 `json:"fee"`
Time int64 `json:"time"`
Height int64 `json:"height"`
StartingPriority int `json:"startingpriority"`
CurrentPriority int `json:"currentpriority"`
StartingPriority float64 `json:"startingpriority"`
CurrentPriority float64 `json:"currentpriority"`
Depends []string `json:"depends"`
}