mirror of
https://github.com/LBRYFoundation/lbcd.git
synced 2025-09-02 18:25:16 +00:00
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) {
|
f: func() (Cmd, error) {
|
||||||
return NewCreateRawTransactionCmd(testId,
|
return NewCreateRawTransactionCmd(testId,
|
||||||
[]TransactionInput{
|
[]TransactionInput{
|
||||||
TransactionInput{Txid: "tx1", Vout: 1},
|
{Txid: "tx1", Vout: 1},
|
||||||
TransactionInput{Txid: "tx2", Vout: 3}},
|
{Txid: "tx2", Vout: 3}},
|
||||||
map[string]int64{"bob": 1, "bill": 2})
|
map[string]int64{"bob": 1, "bill": 2})
|
||||||
},
|
},
|
||||||
result: &CreateRawTransactionCmd{
|
result: &CreateRawTransactionCmd{
|
||||||
id: testId,
|
id: testId,
|
||||||
Inputs: []TransactionInput{
|
Inputs: []TransactionInput{
|
||||||
TransactionInput{Txid: "tx1", Vout: 1},
|
{Txid: "tx1", Vout: 1},
|
||||||
TransactionInput{Txid: "tx2", Vout: 3},
|
{Txid: "tx2", Vout: 3},
|
||||||
},
|
},
|
||||||
Amounts: map[string]int64{
|
Amounts: map[string]int64{
|
||||||
"bob": 1,
|
"bob": 1,
|
||||||
|
|
Loading…
Add table
Reference in a new issue