From ea21ee91da8212d95dbf89c658223d9b9a31aa73 Mon Sep 17 00:00:00 2001 From: lateminer Date: Wed, 17 Oct 2018 20:36:32 +0300 Subject: [PATCH] Fix typo txmempool.h --- src/txmempool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/txmempool.h b/src/txmempool.h index 4ecc0fb61..556c64d7f 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -76,7 +76,7 @@ class CTxMemPool; class CTxMemPoolEntry { private: -shared_ptr tx; + std::shared_ptr tx; CAmount nFee; //!< Cached to avoid expensive parent-transaction lookups size_t nTxSize; //!< ... and avoid recomputing tx size size_t nModSize; //!< ... and modified size for priority