From 2d5950299f6d518a1b4f98b2bee3c089311d84d7 Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Wed, 4 Sep 2013 16:21:03 -0400 Subject: [PATCH] Unbreak build caused by changes in tx pkg. --- cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd.go b/cmd.go index 1b4971e..04dc33d 100644 --- a/cmd.go +++ b/cmd.go @@ -320,7 +320,7 @@ func (w *BtcWallet) ReqNewTxsForAddress(addr string) { Amt: int64(amt), Height: int64(height), } - copy(u.TxHash[:], txhash[:]) + copy(u.Out.Hash[:], txhash[:]) copy(u.Addr[:], receiver) w.UtxoStore.Lock()