mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-19 20:15:18 +02:00
tor: fix go vet error in Go 1.24
non-constant format string in call to (*net/textproto.Conn).Cmd
This commit is contained in:
@@ -250,7 +250,7 @@ func (c *Controller) Reconnect() error {
|
||||
// sendCommand sends a command to the Tor server and returns its response, as a
|
||||
// single space-delimited string, and code.
|
||||
func (c *Controller) sendCommand(command string) (int, string, error) {
|
||||
id, err := c.conn.Cmd(command)
|
||||
id, err := c.conn.Cmd("%v", command)
|
||||
if err != nil {
|
||||
return 0, "", err
|
||||
}
|
||||
|
Reference in New Issue
Block a user