Skip to content

Commit

Permalink
Fix error in assert statement
Browse files Browse the repository at this point in the history
  • Loading branch information
hkalodner committed Mar 8, 2018
1 parent 2325a41 commit db5e856
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/address_db.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void AddressDB::revealedP2SH(uint32_t scriptNum, const std::vector<Address> &add
addAddress(a, outPoint);
}
}
assert(it.ok());
assert(it->status().ok());
delete it;
}

Expand Down

0 comments on commit db5e856

Please sign in to comment.