Skip to content

Commit

Permalink
Fix missing debug_assert
Browse files Browse the repository at this point in the history
  • Loading branch information
CPerezz committed Dec 4, 2020
1 parent c34580b commit de7492c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fee.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ impl Fee {
let stealth_address = StealthAddress::from_bytes(&one_stealth_addr)?;
n += 64;

assert_eq!(n, Fee::serialized_size());
debug_assert_eq!(n, Fee::serialized_size());

Ok(Fee {
gas_limit,
Expand Down

0 comments on commit de7492c

Please sign in to comment.