mirror of
https://github.com/btcsuite/btcd.git
synced 2025-03-13 11:35:52 +01:00
multi: apply make fmt to all files
This commit is contained in:
parent
1b11e834b3
commit
52363a8d05
3 changed files with 5 additions and 3 deletions
|
@ -2,6 +2,7 @@ package psbt
|
|||
|
||||
import (
|
||||
"bytes"
|
||||
|
||||
"github.com/btcsuite/btcd/btcec/v2"
|
||||
"github.com/btcsuite/btcd/btcec/v2/ecdsa"
|
||||
)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -6,6 +6,7 @@ package rpcclient
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/btcsuite/btcd/btcjson"
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue