Skip to content

Commit 790850e

Browse files
authored
Merge pull request #474 from filecoin-project/fix/remove-dbg
fix: remove dbg macro call
2 parents 78530c8 + 2c29161 commit 790850e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared/src/bigint/biguint_ser.rs

+1-1
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)