From 9b99009871a71871325ece7604aa12cc93f426af Mon Sep 17 00:00:00 2001 From: Jason Aten Date: Wed, 16 Sep 2020 22:35:30 -0500 Subject: [PATCH] allow rbf-tx-cursor-stack-allocate to merge; fix conflict with the new HasData code --- rbf/db.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/rbf/db.go b/rbf/db.go index c6eed0bbc..1732eead5 100644 --- a/rbf/db.go +++ b/rbf/db.go @@ -594,8 +594,6 @@ func (db *DB) HasData(requireOneHotBit bool) (hasAnyRecords bool, err error) { cur, err := tx.Cursor(record.Name) if err != nil { return false, err - } else if cur == nil { - continue // no bitmap } if !requireOneHotBit { return true, nil