Browse Source

Fix -Wstring-plus-int warning on clang

pull/4/head
Jack Grigg 6 years ago
parent
commit
1f9dfbb9f0
No known key found for this signature in database GPG Key ID: 665DBCD284F7DAFF
  1. 2
      src/coins.cpp
  2. 2
      src/test/coins_tests.cpp
  3. 2
      src/txdb.cpp
  4. 4
      src/txmempool.cpp

2
src/coins.cpp

@ -143,7 +143,7 @@ bool CCoinsViewCache::GetNullifier(const uint256 &nullifier, NullifierType type)
cacheToUse = &cacheSaplingNullifiers;
break;
default:
throw std::runtime_error("Unknown nullifier type " + type);
throw std::runtime_error("Unknown nullifier type");
}
CNullifiersMap::iterator it = cacheToUse->find(nullifier);
if (it != cacheToUse->end())

2
src/test/coins_tests.cpp

@ -63,7 +63,7 @@ public:
mapToUse = &mapSaplingNullifiers_;
break;
default:
throw std::runtime_error("Unknown nullifier type " + type);
throw std::runtime_error("Unknown nullifier type");
}
std::map<uint256, bool>::const_iterator it = mapToUse->find(nf);
if (it == mapToUse->end()) {

2
src/txdb.cpp

@ -63,7 +63,7 @@ bool CCoinsViewDB::GetNullifier(const uint256 &nf, NullifierType type) const {
dbChar = DB_SAPLING_NULLIFIER;
break;
default:
throw runtime_error("Unknown nullifier type " + type);
throw runtime_error("Unknown nullifier type");
}
return db.Read(make_pair(dbChar, nf), spent);
}

4
src/txmempool.cpp

@ -470,7 +470,7 @@ void CTxMemPool::checkNullifiers(NullifierType type) const
mapToUse = &mapSaplingNullifiers;
break;
default:
throw runtime_error("Unknown nullifier type " + type);
throw runtime_error("Unknown nullifier type");
}
for (const auto& entry : *mapToUse) {
uint256 hash = entry.second->GetHash();
@ -590,7 +590,7 @@ bool CTxMemPool::nullifierExists(const uint256& nullifier, NullifierType type) c
case SAPLING_NULLIFIER:
return mapSaplingNullifiers.count(nullifier);
default:
throw runtime_error("Unknown nullifier type " + type);
throw runtime_error("Unknown nullifier type");
}
}

Loading…
Cancel
Save