We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3d6f3e commit 5481057Copy full SHA for 5481057
plonky2x/core/src/frontend/eth/rlp/builder.rs
@@ -387,7 +387,8 @@ mod tests {
387
use crate::utils::{bytes, setup_logger};
388
389
#[test]
390
- /// Simple test to check that `decode_mpt_node`
+ /// Simple test to check for `decode_mpt_node`, which is just a wrapper for
391
+ /// `verify_decoded_mpt_node`.
392
fn test_decode_mpt_node() {
393
setup_logger();
394
const ENCODING_LEN: usize = 600;
@@ -422,6 +423,7 @@ mod tests {
422
423
424
assert_eq!(mpt_got.len, mpt_exp.len);
425
assert_eq!(mpt_got.data, mpt_exp.data);
426
+ assert_eq!(mpt_got.lens, mpt_exp.lens);
427
}
428
429
/// Passes `verify_decode_mpt_node` the given rlp-encoded string and their decoded values.
0 commit comments