diff --git a/btcjson/walletsvrcmds.go b/btcjson/walletsvrcmds.go index 979ab0c25b..9b787f60c4 100644 --- a/btcjson/walletsvrcmds.go +++ b/btcjson/walletsvrcmds.go @@ -978,7 +978,7 @@ type ImportMultiRequest struct { KeyPool *bool `json:"keypool,omitempty"` } -// ImportMultiRequest defines the options struct, provided to the +// ImportMultiOptions defines the options struct, provided to the // ImportMultiCmd as a pointer argument. type ImportMultiOptions struct { Rescan bool `json:"rescan"` // Rescan the blockchain after all imports diff --git a/rpcclient/chain.go b/rpcclient/chain.go index e65c40b3a8..1d0a8be2a9 100644 --- a/rpcclient/chain.go +++ b/rpcclient/chain.go @@ -890,7 +890,7 @@ func (c *Client) EstimateFee(numBlocks int64) (float64, error) { return c.EstimateFeeAsync(numBlocks).Receive() } -// FutureEstimateFeeResult is a future promise to deliver the result of a +// FutureEstimateSmartFeeResult is a future promise to deliver the result of a // EstimateSmartFeeAsync RPC invocation (or an applicable error). type FutureEstimateSmartFeeResult chan *Response diff --git a/rpcclient/wallet.go b/rpcclient/wallet.go index b8063c136d..f43c20074a 100644 --- a/rpcclient/wallet.go +++ b/rpcclient/wallet.go @@ -2610,7 +2610,7 @@ func (c *Client) GetInfo() (*btcjson.InfoWalletResult, error) { return c.GetInfoAsync().Receive() } -// FutureImportPubKeyResult is a future promise to deliver the result of an +// FutureWalletCreateFundedPsbtResult is a future promise to deliver the result of an // WalletCreateFundedPsbt RPC invocation (or an applicable error). type FutureWalletCreateFundedPsbtResult chan *Response