Skip to content

Commit 1d62a78

Browse files
committed
Remove incorrect hex_writer null pointer assertion.
1 parent 029ca5b commit 1d62a78

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

include/bitcoin/system/impl/stream/streamers/hex_writer.ipp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ template <typename OStream>
5252
void hex_writer<OStream>::do_write_bytes(const uint8_t* data,
5353
size_t size) NOEXCEPT
5454
{
55-
BC_ASSERT(!is_null(data));
5655
BC_ASSERT(!is_multiply_overflow(size, octet_width));
5756

5857
char chars[octet_width]{};

0 commit comments

Comments
 (0)