Skip to content

Commit

Permalink
Fix assert.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoskuil committed Jul 2, 2024
1 parent f167f2a commit 243faa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/bitcoin/database/impl/query/archive.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ bool CLASS::populate(const input& input) const NOEXCEPT
TEMPLATE
bool CLASS::populate(const transaction& tx) const NOEXCEPT
{
BC_ASSERT(!is_coinbase(tx));
BC_ASSERT(!tx->is_coinbase());

auto result = true;
const auto& ins = *tx.inputs_ptr();
Expand Down

0 comments on commit 243faa3

Please sign in to comment.