From 505915dc3f2877e5d561d8eb03c6a7c05e61d462 Mon Sep 17 00:00:00 2001 From: Gabriel Nasr Date: Fri, 25 Jun 2021 15:20:16 -0300 Subject: [PATCH] btcjson: Update WalletCreateFundedPsbtOpts.FeeRate from *int64 to *float64 --- btcjson/walletsvrcmds.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/btcjson/walletsvrcmds.go b/btcjson/walletsvrcmds.go index 2ff9ae1832..e8ed62372b 100644 --- a/btcjson/walletsvrcmds.go +++ b/btcjson/walletsvrcmds.go @@ -1029,7 +1029,7 @@ type WalletCreateFundedPsbtOpts struct { ChangeType *ChangeType `json:"change_type,omitempty"` IncludeWatching *bool `json:"includeWatching,omitempty"` LockUnspents *bool `json:"lockUnspents,omitempty"` - FeeRate *int64 `json:"feeRate,omitempty"` + FeeRate *float64 `json:"feeRate,omitempty"` SubtractFeeFromOutputs *[]int64 `json:"subtractFeeFromOutputs,omitempty"` Replaceable *bool `json:"replaceable,omitempty"` ConfTarget *int64 `json:"conf_target,omitempty"`