From a9efb617671cfda15b6b4e58194abfefb3dfde75 Mon Sep 17 00:00:00 2001 From: Wilmer Paulino Date: Mon, 19 Aug 2019 14:23:43 -0700 Subject: [PATCH] lnwallet: remove irrelevant fields in Utxo struct These fields are only relevant for spent transaction outputs. --- lnwallet/interface.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/lnwallet/interface.go b/lnwallet/interface.go index f6badd075..e09fc2715 100644 --- a/lnwallet/interface.go +++ b/lnwallet/interface.go @@ -59,8 +59,6 @@ type Utxo struct { Value btcutil.Amount Confirmations int64 PkScript []byte - RedeemScript []byte - WitnessScript []byte wire.OutPoint }