Merge pull request #658 from wpaulino/lingering-unconfirmed-input

wtxmgr: remove unconfirmed input reference for confirmed transcation …
This commit is contained in:
Olaoluwa Osuntokun 2019-11-08 19:18:58 -08:00 committed by GitHub
commit c49e7ef3ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 75 additions and 0 deletions

View file

@ -280,6 +280,13 @@ func (s *Store) updateMinedBalance(ns walletdb.ReadWriteBucket, rec *TxRecord,
//
// NOTE: This should only be used once the transaction has been mined.
func (s *Store) deleteUnminedTx(ns walletdb.ReadWriteBucket, rec *TxRecord) error {
for _, input := range rec.MsgTx.TxIn {
prevOut := input.PreviousOutPoint
k := canonicalOutPoint(&prevOut.Hash, prevOut.Index)
if err := deleteRawUnminedInput(ns, k, rec.Hash); err != nil {
return err
}
}
for i := range rec.MsgTx.TxOut {
k := canonicalOutPoint(&rec.Hash, uint32(i))
if err := deleteRawUnminedCredit(ns, k); err != nil {

View file

@ -2195,3 +2195,71 @@ func TestAddDuplicateCreditAfterConfirm(t *testing.T) {
}
})
}
// TestInsertMempoolTxAndConfirm ensures that there aren't any lingering
// unconfirmed records for a transaction that existed within the store as
// unconfirmed before becoming confirmed.
func TestInsertMempoolTxAndConfirm(t *testing.T) {
t.Parallel()
store, db, teardown, err := testStore()
if err != nil {
t.Fatal(err)
}
defer teardown()
// Create a transaction which we'll insert into the store as
// unconfirmed.
tx := newCoinBase(1e8)
txRec, err := NewTxRecordFromMsgTx(tx, time.Now())
if err != nil {
t.Fatal(err)
}
commitDBTx(t, store, db, func(ns walletdb.ReadWriteBucket) {
if err := store.InsertTx(ns, txRec, nil); err != nil {
t.Fatal(err)
}
err := store.AddCredit(ns, txRec, nil, 0, false)
if err != nil {
t.Fatal(err)
}
})
// Then, proceed to confirm it.
commitDBTx(t, store, db, func(ns walletdb.ReadWriteBucket) {
block := &BlockMeta{
Block: Block{Height: 1337},
Time: time.Now(),
}
if err := store.InsertTx(ns, txRec, block); err != nil {
t.Fatal(err)
}
err := store.AddCredit(ns, txRec, block, 0, false)
if err != nil {
t.Fatal(err)
}
})
// We should not see any lingering unconfirmed records for it once it's
// been confirmed.
commitDBTx(t, store, db, func(ns walletdb.ReadWriteBucket) {
for _, input := range tx.TxIn {
prevOut := input.PreviousOutPoint
k := canonicalOutPoint(&prevOut.Hash, prevOut.Index)
if existsRawUnminedInput(ns, k) != nil {
t.Fatalf("found transaction input %v as "+
"unconfirmed", prevOut)
}
}
if existsRawUnmined(ns, txRec.Hash[:]) != nil {
t.Fatal("found transaction as unconfirmed")
}
for i := range tx.TxOut {
k := canonicalOutPoint(&txRec.Hash, uint32(i))
if existsRawUnminedCredit(ns, k) != nil {
t.Fatalf("found transaction output %v as "+
"unconfirmed", i)
}
}
})
}