Use []Type{} instead of make([]Type, 0).
This commit is contained in:
parent
9cfa95d269
commit
00403c7839
2 changed files with 2 additions and 2 deletions
|
@ -958,7 +958,7 @@ func GetTransaction(icmd btcjson.Cmd) (interface{}, *btcjson.Error) {
|
|||
Details: []btcjson.GetTransactionDetailsResult{},
|
||||
WalletConflicts: []string{},
|
||||
}
|
||||
details := make([]btcjson.GetTransactionDetailsResult, 0)
|
||||
details := []btcjson.GetTransactionDetailsResult{}
|
||||
for _, e := range accumulatedTxen {
|
||||
switch record := e.Tx.(type) {
|
||||
case *tx.RecvTxOut:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue