Skip to content

Commit 2c29161

Browse files
committed
fix: remove dbg macro call
1 parent 78530c8 commit 2c29161

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared/src/bigint/biguint_ser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ where
3131
bz.insert(0, 0);
3232
}
3333

34-
if dbg!(bz.len()) > MAX_BIGINT_SIZE {
34+
if bz.len() > MAX_BIGINT_SIZE {
3535
return Err(<S::Error as serde::ser::Error>::custom("BigInt too large"));
3636
}
3737

0 commit comments

Comments
 (0)