multi: apply make fmt to all files

This commit is contained in:
Kim 2025-03-10 17:42:32 +09:00
parent 1b11e834b3
commit 52363a8d05
3 changed files with 5 additions and 3 deletions

View file

@ -2,6 +2,7 @@ package psbt
import (
"bytes"
"github.com/btcsuite/btcd/btcec/v2"
"github.com/btcsuite/btcd/btcec/v2/ecdsa"
)

View file

@ -146,7 +146,7 @@ func TestClientConnectedToWSServerRunner(t *testing.T) {
}
testTable := []TestTableItem{
TestTableItem{
{
Name: "TestGetChainTxStatsAsyncSuccessTx",
TestCase: func(t *testing.T) {
client, serverReceivedChannel, cleanup := makeClient(t)
@ -159,7 +159,7 @@ func TestClientConnectedToWSServerRunner(t *testing.T) {
}
},
},
TestTableItem{
{
Name: "TestGetChainTxStatsAsyncShutdownError",
TestCase: func(t *testing.T) {
client, _, cleanup := makeClient(t)
@ -192,7 +192,7 @@ func TestClientConnectedToWSServerRunner(t *testing.T) {
}
},
},
TestTableItem{
{
Name: "TestGetBestBlockHashAsync",
TestCase: func(t *testing.T) {
client, serverReceivedChannel, cleanup := makeClient(t)

View file

@ -6,6 +6,7 @@ package rpcclient
import (
"fmt"
"github.com/btcsuite/btcd/btcjson"
)