gofmt
This commit is contained in:
parent
25bb31ebd5
commit
ae21689a57
1 changed files with 4 additions and 4 deletions
|
@ -120,15 +120,15 @@ var jsoncmdtests = []struct {
|
|||
f: func() (Cmd, error) {
|
||||
return NewCreateRawTransactionCmd(testId,
|
||||
[]TransactionInput{
|
||||
TransactionInput{Txid: "tx1", Vout: 1},
|
||||
TransactionInput{Txid: "tx2", Vout: 3}},
|
||||
{Txid: "tx1", Vout: 1},
|
||||
{Txid: "tx2", Vout: 3}},
|
||||
map[string]int64{"bob": 1, "bill": 2})
|
||||
},
|
||||
result: &CreateRawTransactionCmd{
|
||||
id: testId,
|
||||
Inputs: []TransactionInput{
|
||||
TransactionInput{Txid: "tx1", Vout: 1},
|
||||
TransactionInput{Txid: "tx2", Vout: 3},
|
||||
{Txid: "tx1", Vout: 1},
|
||||
{Txid: "tx2", Vout: 3},
|
||||
},
|
||||
Amounts: map[string]int64{
|
||||
"bob": 1,
|
||||
|
|
Loading…
Add table
Reference in a new issue