From 5e477e107acb5c2af0cceaf9c5b02c62f9dd506b Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Tue, 23 Feb 2021 08:32:07 -0700 Subject: [PATCH] Remove unused RBFTx.frag field --- rbf.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/rbf.go b/rbf.go index 4fa2f8900..3ae1246d7 100644 --- a/rbf.go +++ b/rbf.go @@ -184,7 +184,6 @@ type RBFTx struct { // initialIndex is only a debugging aid. Transactions // can cross indexes. It can be left empty without consequence. initialIndex string - frag *fragment tx *rbf.Tx o Txo sn int64 // serial number @@ -520,7 +519,6 @@ func (w *RbfDBWrapper) NewTx(write bool, initialIndex string, o Txo) (_ Tx, err rtx := &RBFTx{ tx: tx, initialIndex: initialIndex, - frag: o.Fragment, o: o, sn: sn, Db: w,