From ae21689a57f2127300461220fca543992613c5f6 Mon Sep 17 00:00:00 2001 From: David Hill Date: Tue, 4 Feb 2014 16:13:24 -0500 Subject: [PATCH] gofmt --- jsoncmd_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jsoncmd_test.go b/jsoncmd_test.go index 2378f7f7..42bb21ce 100644 --- a/jsoncmd_test.go +++ b/jsoncmd_test.go @@ -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,