routing: convert testChan stuct to take an int64 for FeeRate

This commit is contained in:
Olaoluwa Osuntokun 2017-10-18 21:22:49 -07:00
parent fae3dacc9b
commit 4ff66efa2b
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21

@ -85,7 +85,7 @@ type testChan struct {
Expiry uint16 `json:"expiry"` Expiry uint16 `json:"expiry"`
MinHTLC int64 `json:"min_htlc"` MinHTLC int64 `json:"min_htlc"`
FeeBaseMsat int64 `json:"fee_base_msat"` FeeBaseMsat int64 `json:"fee_base_msat"`
FeeRate float64 `json:"fee_rate"` FeeRate int64 `json:"fee_rate"`
Capacity int64 `json:"capacity"` Capacity int64 `json:"capacity"`
} }