From 96ba5b4903f7a88976bf3b5726c9e7ba35cbc66a Mon Sep 17 00:00:00 2001 From: William Banfield Date: Tue, 27 Jul 2021 18:35:16 -0400 Subject: [PATCH] typo --- internal/mempool/v1/mempool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/mempool/v1/mempool.go b/internal/mempool/v1/mempool.go index 244dd7478..aab3020ef 100644 --- a/internal/mempool/v1/mempool.go +++ b/internal/mempool/v1/mempool.go @@ -748,7 +748,7 @@ func (txmp *TxMempool) insertTx(wtx *WrappedTx) { // Insert the transaction into the gossip index and mark the reference to the // linked-list element, which will be needed at a later point when the // transaction is removed. - gossipEl := txmp.gotsipIndex.PushBack(wtx) + gossipEl := txmp.gossipIndex.PushBack(wtx) wtx.gossipEl = gossipEl atomic.AddInt64(&txmp.sizeBytes, int64(wtx.Size()))