From cd8a4ccfa53b7d7c9ecc29366ae0be5e21741942 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 15 Dec 2015 15:24:19 -0600 Subject: [PATCH] comment out gettxout logic for now, need test-node infrastructure --- wallet/wallet.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wallet/wallet.go b/wallet/wallet.go index d672e106..e6a2cee2 100644 --- a/wallet/wallet.go +++ b/wallet/wallet.go @@ -589,7 +589,7 @@ func (l *LightningWallet) handleFundingCounterPartySigs(msg *addCounterPartySigs if txin.SignatureScript == nil { txin.SignatureScript = pendingReservation.theirSigs[i] - // Fetch the alleged previous output along with the + /*// Fetch the alleged previous output along with the // pkscript referenced by this input. prevOut := txin.PreviousOutPoint output, err := l.rpc.GetTxOut(&prevOut.Hash, prevOut.Index, false) @@ -616,7 +616,7 @@ func (l *LightningWallet) handleFundingCounterPartySigs(msg *addCounterPartySigs if err = vm.Execute(); err != nil { msg.err <- fmt.Errorf("cannot validate transaction: %s", err) return - } + }*/ } }