From 63ad3377b70bb3bec5cdcf8bbfb4819accd0433e Mon Sep 17 00:00:00 2001 From: Nate Maninger Date: Wed, 10 Jan 2024 16:14:21 -0800 Subject: [PATCH] api: fix client docstring --- api/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/client.go b/api/client.go index 3258d9e..8365495 100644 --- a/api/client.go +++ b/api/client.go @@ -106,7 +106,7 @@ func (c *Client) Wallet(name string) *WalletClient { } // Resubscribe subscribes the wallet to consensus updates, starting at the -// specified height. This can only be done once. +// specified height. func (c *Client) Resubscribe(height uint64) (err error) { err = c.c.POST("/resubscribe", height, nil) return