build: fix darwin build

This commit is contained in:
Braydon Fuller 2016-04-12 23:25:55 -04:00 committed by Simon
parent ca0ee59d6e
commit 9994a074e5
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ struct CMempoolAddressDeltaKey
struct CMempoolAddressDeltaKeyCompare
{
bool operator()(const CMempoolAddressDeltaKey& a, const CMempoolAddressDeltaKey& b) {
bool operator()(const CMempoolAddressDeltaKey& a, const CMempoolAddressDeltaKey& b) const {
if (a.type == b.type) {
if (a.addressBytes == b.addressBytes) {
if (a.txhash == b.txhash) {

View File

@ -401,7 +401,7 @@ bool CBlockTreeDB::ReadAddressIndex(uint160 addressHash, int type,
bool CBlockTreeDB::WriteTimestampIndex(const CTimestampIndexKey &timestampIndex) {
CDBBatch batch(*this);
batch.Write(make_pair(DB_TIMESTAMPINDEX, timestampIndex), NULL);
batch.Write(make_pair(DB_TIMESTAMPINDEX, timestampIndex), 0);
return WriteBatch(batch);
}