Add enum for nullifier type
This commit is contained in:
@@ -43,7 +43,7 @@ bool CCoins::Spend(uint32_t nPos)
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
bool CCoinsView::GetAnchorAt(const uint256 &rt, ZCIncrementalMerkleTree &tree) const { return false; }
|
bool CCoinsView::GetAnchorAt(const uint256 &rt, ZCIncrementalMerkleTree &tree) const { return false; }
|
||||||
bool CCoinsView::GetNullifier(const uint256 &nullifier, bool isSapling) const { return false; }
|
bool CCoinsView::GetNullifier(const uint256 &nullifier, NullifierType type) const { return false; }
|
||||||
bool CCoinsView::GetCoins(const uint256 &txid, CCoins &coins) const { return false; }
|
bool CCoinsView::GetCoins(const uint256 &txid, CCoins &coins) const { return false; }
|
||||||
bool CCoinsView::HaveCoins(const uint256 &txid) const { return false; }
|
bool CCoinsView::HaveCoins(const uint256 &txid) const { return false; }
|
||||||
uint256 CCoinsView::GetBestBlock() const { return uint256(); }
|
uint256 CCoinsView::GetBestBlock() const { return uint256(); }
|
||||||
@@ -60,7 +60,7 @@ bool CCoinsView::GetStats(CCoinsStats &stats) const { return false; }
|
|||||||
CCoinsViewBacked::CCoinsViewBacked(CCoinsView *viewIn) : base(viewIn) { }
|
CCoinsViewBacked::CCoinsViewBacked(CCoinsView *viewIn) : base(viewIn) { }
|
||||||
|
|
||||||
bool CCoinsViewBacked::GetAnchorAt(const uint256 &rt, ZCIncrementalMerkleTree &tree) const { return base->GetAnchorAt(rt, tree); }
|
bool CCoinsViewBacked::GetAnchorAt(const uint256 &rt, ZCIncrementalMerkleTree &tree) const { return base->GetAnchorAt(rt, tree); }
|
||||||
bool CCoinsViewBacked::GetNullifier(const uint256 &nullifier, bool isSapling) const { return base->GetNullifier(nullifier, isSapling); }
|
bool CCoinsViewBacked::GetNullifier(const uint256 &nullifier, NullifierType type) const { return base->GetNullifier(nullifier, type); }
|
||||||
bool CCoinsViewBacked::GetCoins(const uint256 &txid, CCoins &coins) const { return base->GetCoins(txid, coins); }
|
bool CCoinsViewBacked::GetCoins(const uint256 &txid, CCoins &coins) const { return base->GetCoins(txid, coins); }
|
||||||
bool CCoinsViewBacked::HaveCoins(const uint256 &txid) const { return base->HaveCoins(txid); }
|
bool CCoinsViewBacked::HaveCoins(const uint256 &txid) const { return base->HaveCoins(txid); }
|
||||||
uint256 CCoinsViewBacked::GetBestBlock() const { return base->GetBestBlock(); }
|
uint256 CCoinsViewBacked::GetBestBlock() const { return base->GetBestBlock(); }
|
||||||
@@ -133,14 +133,24 @@ bool CCoinsViewCache::GetAnchorAt(const uint256 &rt, ZCIncrementalMerkleTree &tr
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CCoinsViewCache::GetNullifier(const uint256 &nullifier, bool isSapling) const {
|
bool CCoinsViewCache::GetNullifier(const uint256 &nullifier, NullifierType type) const {
|
||||||
CNullifiersMap* cacheToUse = isSapling ? &cacheSaplingNullifiers : &cacheNullifiers;
|
CNullifiersMap* cacheToUse;
|
||||||
|
switch (type) {
|
||||||
|
case SPROUT_NULLIFIER:
|
||||||
|
cacheToUse = &cacheNullifiers;
|
||||||
|
break;
|
||||||
|
case SAPLING_NULLIFIER:
|
||||||
|
cacheToUse = &cacheSaplingNullifiers;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw std::runtime_error("Unknown nullifier type " + type);
|
||||||
|
}
|
||||||
CNullifiersMap::iterator it = cacheToUse->find(nullifier);
|
CNullifiersMap::iterator it = cacheToUse->find(nullifier);
|
||||||
if (it != cacheToUse->end())
|
if (it != cacheToUse->end())
|
||||||
return it->second.entered;
|
return it->second.entered;
|
||||||
|
|
||||||
CNullifiersCacheEntry entry;
|
CNullifiersCacheEntry entry;
|
||||||
bool tmp = base->GetNullifier(nullifier, isSapling);
|
bool tmp = base->GetNullifier(nullifier, type);
|
||||||
entry.entered = tmp;
|
entry.entered = tmp;
|
||||||
|
|
||||||
cacheToUse->insert(std::make_pair(nullifier, entry));
|
cacheToUse->insert(std::make_pair(nullifier, entry));
|
||||||
@@ -416,7 +426,7 @@ bool CCoinsViewCache::HaveJoinSplitRequirements(const CTransaction& tx) const
|
|||||||
{
|
{
|
||||||
BOOST_FOREACH(const uint256& nullifier, joinsplit.nullifiers)
|
BOOST_FOREACH(const uint256& nullifier, joinsplit.nullifiers)
|
||||||
{
|
{
|
||||||
if (GetNullifier(nullifier, false)) {
|
if (GetNullifier(nullifier, SPROUT_NULLIFIER)) {
|
||||||
// If the nullifier is set, this transaction
|
// If the nullifier is set, this transaction
|
||||||
// double-spends!
|
// double-spends!
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
12
src/coins.h
12
src/coins.h
@@ -298,6 +298,12 @@ struct CNullifiersCacheEntry
|
|||||||
CNullifiersCacheEntry() : entered(false), flags(0) {}
|
CNullifiersCacheEntry() : entered(false), flags(0) {}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum NullifierType
|
||||||
|
{
|
||||||
|
SPROUT_NULLIFIER,
|
||||||
|
SAPLING_NULLIFIER,
|
||||||
|
};
|
||||||
|
|
||||||
typedef boost::unordered_map<uint256, CCoinsCacheEntry, CCoinsKeyHasher> CCoinsMap;
|
typedef boost::unordered_map<uint256, CCoinsCacheEntry, CCoinsKeyHasher> CCoinsMap;
|
||||||
typedef boost::unordered_map<uint256, CAnchorsCacheEntry, CCoinsKeyHasher> CAnchorsMap;
|
typedef boost::unordered_map<uint256, CAnchorsCacheEntry, CCoinsKeyHasher> CAnchorsMap;
|
||||||
typedef boost::unordered_map<uint256, CNullifiersCacheEntry, CCoinsKeyHasher> CNullifiersMap;
|
typedef boost::unordered_map<uint256, CNullifiersCacheEntry, CCoinsKeyHasher> CNullifiersMap;
|
||||||
@@ -324,7 +330,7 @@ public:
|
|||||||
virtual bool GetAnchorAt(const uint256 &rt, ZCIncrementalMerkleTree &tree) const;
|
virtual bool GetAnchorAt(const uint256 &rt, ZCIncrementalMerkleTree &tree) const;
|
||||||
|
|
||||||
//! Determine whether a nullifier is spent or not
|
//! Determine whether a nullifier is spent or not
|
||||||
virtual bool GetNullifier(const uint256 &nullifier, bool isSapling) const;
|
virtual bool GetNullifier(const uint256 &nullifier, NullifierType type) const;
|
||||||
|
|
||||||
//! Retrieve the CCoins (unspent transaction outputs) for a given txid
|
//! Retrieve the CCoins (unspent transaction outputs) for a given txid
|
||||||
virtual bool GetCoins(const uint256 &txid, CCoins &coins) const;
|
virtual bool GetCoins(const uint256 &txid, CCoins &coins) const;
|
||||||
@@ -365,7 +371,7 @@ protected:
|
|||||||
public:
|
public:
|
||||||
CCoinsViewBacked(CCoinsView *viewIn);
|
CCoinsViewBacked(CCoinsView *viewIn);
|
||||||
bool GetAnchorAt(const uint256 &rt, ZCIncrementalMerkleTree &tree) const;
|
bool GetAnchorAt(const uint256 &rt, ZCIncrementalMerkleTree &tree) const;
|
||||||
bool GetNullifier(const uint256 &nullifier, bool isSapling) const;
|
bool GetNullifier(const uint256 &nullifier, NullifierType type) const;
|
||||||
bool GetCoins(const uint256 &txid, CCoins &coins) const;
|
bool GetCoins(const uint256 &txid, CCoins &coins) const;
|
||||||
bool HaveCoins(const uint256 &txid) const;
|
bool HaveCoins(const uint256 &txid) const;
|
||||||
uint256 GetBestBlock() const;
|
uint256 GetBestBlock() const;
|
||||||
@@ -431,7 +437,7 @@ public:
|
|||||||
|
|
||||||
// Standard CCoinsView methods
|
// Standard CCoinsView methods
|
||||||
bool GetAnchorAt(const uint256 &rt, ZCIncrementalMerkleTree &tree) const;
|
bool GetAnchorAt(const uint256 &rt, ZCIncrementalMerkleTree &tree) const;
|
||||||
bool GetNullifier(const uint256 &nullifier, bool isSapling) const;
|
bool GetNullifier(const uint256 &nullifier, NullifierType type) const;
|
||||||
bool GetCoins(const uint256 &txid, CCoins &coins) const;
|
bool GetCoins(const uint256 &txid, CCoins &coins) const;
|
||||||
bool HaveCoins(const uint256 &txid) const;
|
bool HaveCoins(const uint256 &txid) const;
|
||||||
uint256 GetBestBlock() const;
|
uint256 GetBestBlock() const;
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ public:
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GetNullifier(const uint256 &nf, bool isSapling) const {
|
bool GetNullifier(const uint256 &nf, NullifierType type) const {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ public:
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GetNullifier(const uint256 &nf, bool isSapling) const {
|
bool GetNullifier(const uint256 &nf, NullifierType type) const {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1270,7 +1270,7 @@ bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransa
|
|||||||
}
|
}
|
||||||
BOOST_FOREACH(const JSDescription &joinsplit, tx.vjoinsplit) {
|
BOOST_FOREACH(const JSDescription &joinsplit, tx.vjoinsplit) {
|
||||||
BOOST_FOREACH(const uint256 &nf, joinsplit.nullifiers) {
|
BOOST_FOREACH(const uint256 &nf, joinsplit.nullifiers) {
|
||||||
if (pool.nullifierExists(nf, false))
|
if (pool.nullifierExists(nf, SPROUT_NULLIFIER))
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -52,11 +52,20 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GetNullifier(const uint256 &nf, bool isSapling) const
|
bool GetNullifier(const uint256 &nf, NullifierType type) const
|
||||||
{
|
{
|
||||||
const std::map<uint256, bool>* mapToUse = isSapling ? &mapSaplingNullifiers_ : &mapNullifiers_;
|
const std::map<uint256, bool>* mapToUse;
|
||||||
|
switch (type) {
|
||||||
|
case SPROUT_NULLIFIER:
|
||||||
|
mapToUse = &mapNullifiers_;
|
||||||
|
break;
|
||||||
|
case SAPLING_NULLIFIER:
|
||||||
|
mapToUse = &mapSaplingNullifiers_;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw std::runtime_error("Unknown nullifier type " + type);
|
||||||
|
}
|
||||||
std::map<uint256, bool>::const_iterator it = mapToUse->find(nf);
|
std::map<uint256, bool>::const_iterator it = mapToUse->find(nf);
|
||||||
|
|
||||||
if (it == mapToUse->end()) {
|
if (it == mapToUse->end()) {
|
||||||
return false;
|
return false;
|
||||||
} else {
|
} else {
|
||||||
@@ -206,7 +215,7 @@ BOOST_AUTO_TEST_CASE(nullifier_regression_test)
|
|||||||
cache1.SetNullifiers(txWithNullifier.first, false);
|
cache1.SetNullifiers(txWithNullifier.first, false);
|
||||||
|
|
||||||
// The nullifier now should be `false`.
|
// The nullifier now should be `false`.
|
||||||
BOOST_CHECK(!cache1.GetNullifier(txWithNullifier.second, false));
|
BOOST_CHECK(!cache1.GetNullifier(txWithNullifier.second, SPROUT_NULLIFIER));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Also correct behavior:
|
// Also correct behavior:
|
||||||
@@ -224,7 +233,7 @@ BOOST_AUTO_TEST_CASE(nullifier_regression_test)
|
|||||||
cache1.Flush(); // Flush to base.
|
cache1.Flush(); // Flush to base.
|
||||||
|
|
||||||
// The nullifier now should be `false`.
|
// The nullifier now should be `false`.
|
||||||
BOOST_CHECK(!cache1.GetNullifier(txWithNullifier.second, false));
|
BOOST_CHECK(!cache1.GetNullifier(txWithNullifier.second, SPROUT_NULLIFIER));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Works because we bring it from the parent cache:
|
// Works because we bring it from the parent cache:
|
||||||
@@ -241,13 +250,13 @@ BOOST_AUTO_TEST_CASE(nullifier_regression_test)
|
|||||||
{
|
{
|
||||||
// Remove the nullifier.
|
// Remove the nullifier.
|
||||||
CCoinsViewCacheTest cache2(&cache1);
|
CCoinsViewCacheTest cache2(&cache1);
|
||||||
BOOST_CHECK(cache2.GetNullifier(txWithNullifier.second, false));
|
BOOST_CHECK(cache2.GetNullifier(txWithNullifier.second, SPROUT_NULLIFIER));
|
||||||
cache1.SetNullifiers(txWithNullifier.first, false);
|
cache1.SetNullifiers(txWithNullifier.first, false);
|
||||||
cache2.Flush(); // Empties cache, flushes to cache1.
|
cache2.Flush(); // Empties cache, flushes to cache1.
|
||||||
}
|
}
|
||||||
|
|
||||||
// The nullifier now should be `false`.
|
// The nullifier now should be `false`.
|
||||||
BOOST_CHECK(!cache1.GetNullifier(txWithNullifier.second, false));
|
BOOST_CHECK(!cache1.GetNullifier(txWithNullifier.second, SPROUT_NULLIFIER));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Was broken:
|
// Was broken:
|
||||||
@@ -269,7 +278,7 @@ BOOST_AUTO_TEST_CASE(nullifier_regression_test)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// The nullifier now should be `false`.
|
// The nullifier now should be `false`.
|
||||||
BOOST_CHECK(!cache1.GetNullifier(txWithNullifier.second, false));
|
BOOST_CHECK(!cache1.GetNullifier(txWithNullifier.second, SPROUT_NULLIFIER));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -440,24 +449,24 @@ BOOST_AUTO_TEST_CASE(nullifiers_test)
|
|||||||
|
|
||||||
auto txWithNullifier = createTxWithNullifier();
|
auto txWithNullifier = createTxWithNullifier();
|
||||||
|
|
||||||
BOOST_CHECK(!cache.GetNullifier(txWithNullifier.second, false));
|
BOOST_CHECK(!cache.GetNullifier(txWithNullifier.second, SPROUT_NULLIFIER));
|
||||||
BOOST_CHECK(!cache.GetNullifier(txWithNullifier.second, true));
|
BOOST_CHECK(!cache.GetNullifier(txWithNullifier.second, SAPLING_NULLIFIER));
|
||||||
cache.SetNullifiers(txWithNullifier.first, true);
|
cache.SetNullifiers(txWithNullifier.first, true);
|
||||||
BOOST_CHECK(cache.GetNullifier(txWithNullifier.second, false));
|
BOOST_CHECK(cache.GetNullifier(txWithNullifier.second, SPROUT_NULLIFIER));
|
||||||
BOOST_CHECK(!cache.GetNullifier(txWithNullifier.second, true));
|
BOOST_CHECK(!cache.GetNullifier(txWithNullifier.second, SAPLING_NULLIFIER));
|
||||||
cache.Flush();
|
cache.Flush();
|
||||||
|
|
||||||
CCoinsViewCacheTest cache2(&base);
|
CCoinsViewCacheTest cache2(&base);
|
||||||
|
|
||||||
BOOST_CHECK(cache2.GetNullifier(txWithNullifier.second, false));
|
BOOST_CHECK(cache2.GetNullifier(txWithNullifier.second, SPROUT_NULLIFIER));
|
||||||
BOOST_CHECK(!cache2.GetNullifier(txWithNullifier.second, true));
|
BOOST_CHECK(!cache2.GetNullifier(txWithNullifier.second, SAPLING_NULLIFIER));
|
||||||
cache2.SetNullifiers(txWithNullifier.first, false);
|
cache2.SetNullifiers(txWithNullifier.first, false);
|
||||||
BOOST_CHECK(!cache2.GetNullifier(txWithNullifier.second, false));
|
BOOST_CHECK(!cache2.GetNullifier(txWithNullifier.second, SPROUT_NULLIFIER));
|
||||||
cache2.Flush();
|
cache2.Flush();
|
||||||
|
|
||||||
CCoinsViewCacheTest cache3(&base);
|
CCoinsViewCacheTest cache3(&base);
|
||||||
|
|
||||||
BOOST_CHECK(!cache3.GetNullifier(txWithNullifier.second, false));
|
BOOST_CHECK(!cache3.GetNullifier(txWithNullifier.second, SPROUT_NULLIFIER));
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(anchors_flush_test)
|
BOOST_AUTO_TEST_CASE(anchors_flush_test)
|
||||||
|
|||||||
15
src/txdb.cpp
15
src/txdb.cpp
@@ -52,9 +52,20 @@ bool CCoinsViewDB::GetAnchorAt(const uint256 &rt, ZCIncrementalMerkleTree &tree)
|
|||||||
return read;
|
return read;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CCoinsViewDB::GetNullifier(const uint256 &nf, bool isSapling) const {
|
bool CCoinsViewDB::GetNullifier(const uint256 &nf, NullifierType type) const {
|
||||||
bool spent = false;
|
bool spent = false;
|
||||||
return db.Read(make_pair(isSapling ? DB_SAPLING_NULLIFIER : DB_NULLIFIER, nf), spent);
|
char dbChar;
|
||||||
|
switch (type) {
|
||||||
|
case SPROUT_NULLIFIER:
|
||||||
|
dbChar = DB_NULLIFIER;
|
||||||
|
break;
|
||||||
|
case SAPLING_NULLIFIER:
|
||||||
|
dbChar = DB_SAPLING_NULLIFIER;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw runtime_error("Unknown nullifier type " + type);
|
||||||
|
}
|
||||||
|
return db.Read(make_pair(dbChar, nf), spent);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CCoinsViewDB::GetCoins(const uint256 &txid, CCoins &coins) const {
|
bool CCoinsViewDB::GetCoins(const uint256 &txid, CCoins &coins) const {
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ public:
|
|||||||
CCoinsViewDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false);
|
CCoinsViewDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false);
|
||||||
|
|
||||||
bool GetAnchorAt(const uint256 &rt, ZCIncrementalMerkleTree &tree) const;
|
bool GetAnchorAt(const uint256 &rt, ZCIncrementalMerkleTree &tree) const;
|
||||||
bool GetNullifier(const uint256 &nf, bool isSapling) const;
|
bool GetNullifier(const uint256 &nf, NullifierType type) const;
|
||||||
bool GetCoins(const uint256 &txid, CCoins &coins) const;
|
bool GetCoins(const uint256 &txid, CCoins &coins) const;
|
||||||
bool HaveCoins(const uint256 &txid) const;
|
bool HaveCoins(const uint256 &txid) const;
|
||||||
uint256 GetBestBlock() const;
|
uint256 GetBestBlock() const;
|
||||||
|
|||||||
@@ -383,7 +383,7 @@ void CTxMemPool::check(const CCoinsViewCache *pcoins) const
|
|||||||
|
|
||||||
BOOST_FOREACH(const JSDescription &joinsplit, tx.vjoinsplit) {
|
BOOST_FOREACH(const JSDescription &joinsplit, tx.vjoinsplit) {
|
||||||
BOOST_FOREACH(const uint256 &nf, joinsplit.nullifiers) {
|
BOOST_FOREACH(const uint256 &nf, joinsplit.nullifiers) {
|
||||||
assert(!pcoins->GetNullifier(nf, false));
|
assert(!pcoins->GetNullifier(nf, SPROUT_NULLIFIER));
|
||||||
}
|
}
|
||||||
|
|
||||||
ZCIncrementalMerkleTree tree;
|
ZCIncrementalMerkleTree tree;
|
||||||
@@ -439,16 +439,26 @@ void CTxMemPool::check(const CCoinsViewCache *pcoins) const
|
|||||||
assert(it->first == it->second.ptx->vin[it->second.n].prevout);
|
assert(it->first == it->second.ptx->vin[it->second.n].prevout);
|
||||||
}
|
}
|
||||||
|
|
||||||
checkNullifiers(false);
|
checkNullifiers(SPROUT_NULLIFIER);
|
||||||
checkNullifiers(true);
|
checkNullifiers(SAPLING_NULLIFIER);
|
||||||
|
|
||||||
assert(totalTxSize == checkTotal);
|
assert(totalTxSize == checkTotal);
|
||||||
assert(innerUsage == cachedInnerUsage);
|
assert(innerUsage == cachedInnerUsage);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CTxMemPool::checkNullifiers(bool isSapling) const
|
void CTxMemPool::checkNullifiers(NullifierType type) const
|
||||||
{
|
{
|
||||||
const std::map<uint256, const CTransaction*>* mapToUse = isSapling ? &mapSaplingNullifiers : &mapNullifiers;
|
const std::map<uint256, const CTransaction*>* mapToUse;
|
||||||
|
switch (type) {
|
||||||
|
case SPROUT_NULLIFIER:
|
||||||
|
mapToUse = &mapNullifiers;
|
||||||
|
break;
|
||||||
|
case SAPLING_NULLIFIER:
|
||||||
|
mapToUse = &mapSaplingNullifiers;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw runtime_error("Unknown nullifier type " + type);
|
||||||
|
}
|
||||||
for (const auto& entry : *mapToUse) {
|
for (const auto& entry : *mapToUse) {
|
||||||
uint256 hash = entry.second->GetHash();
|
uint256 hash = entry.second->GetHash();
|
||||||
CTxMemPool::indexed_transaction_set::const_iterator findTx = mapTx.find(hash);
|
CTxMemPool::indexed_transaction_set::const_iterator findTx = mapTx.find(hash);
|
||||||
@@ -559,16 +569,23 @@ bool CTxMemPool::HasNoInputsOf(const CTransaction &tx) const
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CTxMemPool::nullifierExists(const uint256& nullifier, bool isSapling) const
|
bool CTxMemPool::nullifierExists(const uint256& nullifier, NullifierType type) const
|
||||||
{
|
{
|
||||||
return isSapling ? mapSaplingNullifiers.count(nullifier) : mapNullifiers.count(nullifier);
|
switch (type) {
|
||||||
|
case SPROUT_NULLIFIER:
|
||||||
|
return mapNullifiers.count(nullifier);
|
||||||
|
case SAPLING_NULLIFIER:
|
||||||
|
return mapSaplingNullifiers.count(nullifier);
|
||||||
|
default:
|
||||||
|
throw runtime_error("Unknown nullifier type " + type);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
CCoinsViewMemPool::CCoinsViewMemPool(CCoinsView *baseIn, CTxMemPool &mempoolIn) : CCoinsViewBacked(baseIn), mempool(mempoolIn) { }
|
CCoinsViewMemPool::CCoinsViewMemPool(CCoinsView *baseIn, CTxMemPool &mempoolIn) : CCoinsViewBacked(baseIn), mempool(mempoolIn) { }
|
||||||
|
|
||||||
bool CCoinsViewMemPool::GetNullifier(const uint256 &nf, bool isSapling) const
|
bool CCoinsViewMemPool::GetNullifier(const uint256 &nf, NullifierType type) const
|
||||||
{
|
{
|
||||||
return mempool.nullifierExists(nf, isSapling) || base->GetNullifier(nf, isSapling);
|
return mempool.nullifierExists(nf, type) || base->GetNullifier(nf, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CCoinsViewMemPool::GetCoins(const uint256 &txid, CCoins &coins) const {
|
bool CCoinsViewMemPool::GetCoins(const uint256 &txid, CCoins &coins) const {
|
||||||
|
|||||||
@@ -134,7 +134,7 @@ private:
|
|||||||
std::map<uint256, const CTransaction*> mapNullifiers;
|
std::map<uint256, const CTransaction*> mapNullifiers;
|
||||||
std::map<uint256, const CTransaction*> mapSaplingNullifiers;
|
std::map<uint256, const CTransaction*> mapSaplingNullifiers;
|
||||||
|
|
||||||
void checkNullifiers(bool isSapling) const;
|
void checkNullifiers(NullifierType type) const;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
typedef boost::multi_index_container<
|
typedef boost::multi_index_container<
|
||||||
@@ -192,7 +192,7 @@ public:
|
|||||||
void ApplyDeltas(const uint256 hash, double &dPriorityDelta, CAmount &nFeeDelta);
|
void ApplyDeltas(const uint256 hash, double &dPriorityDelta, CAmount &nFeeDelta);
|
||||||
void ClearPrioritisation(const uint256 hash);
|
void ClearPrioritisation(const uint256 hash);
|
||||||
|
|
||||||
bool nullifierExists(const uint256& nullifier, bool isSapling) const;
|
bool nullifierExists(const uint256& nullifier, NullifierType type) const;
|
||||||
|
|
||||||
unsigned long size()
|
unsigned long size()
|
||||||
{
|
{
|
||||||
@@ -243,7 +243,7 @@ protected:
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
CCoinsViewMemPool(CCoinsView *baseIn, CTxMemPool &mempoolIn);
|
CCoinsViewMemPool(CCoinsView *baseIn, CTxMemPool &mempoolIn);
|
||||||
bool GetNullifier(const uint256 &txid, bool isSapling) const;
|
bool GetNullifier(const uint256 &txid, NullifierType type) const;
|
||||||
bool GetCoins(const uint256 &txid, CCoins &coins) const;
|
bool GetCoins(const uint256 &txid, CCoins &coins) const;
|
||||||
bool HaveCoins(const uint256 &txid) const;
|
bool HaveCoins(const uint256 &txid) const;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -366,7 +366,7 @@ public:
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GetNullifier(const uint256 &nf, bool isSapling) const {
|
bool GetNullifier(const uint256 &nf, NullifierType type) const {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user