Skip to content

Commit

Permalink
Minor typos
Browse files Browse the repository at this point in the history
  • Loading branch information
hidenori-shinohara committed Nov 11, 2023
1 parent e3d6f3e commit 5481057
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plonky2x/core/src/frontend/eth/rlp/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,8 @@ mod tests {
use crate::utils::{bytes, setup_logger};

#[test]
/// Simple test to check that `decode_mpt_node`
/// Simple test to check for `decode_mpt_node`, which is just a wrapper for
/// `verify_decoded_mpt_node`.
fn test_decode_mpt_node() {
setup_logger();
const ENCODING_LEN: usize = 600;
Expand Down Expand Up @@ -422,6 +423,7 @@ mod tests {

assert_eq!(mpt_got.len, mpt_exp.len);
assert_eq!(mpt_got.data, mpt_exp.data);
assert_eq!(mpt_got.lens, mpt_exp.lens);
}

/// Passes `verify_decode_mpt_node` the given rlp-encoded string and their decoded values.
Expand Down

0 comments on commit 5481057

Please sign in to comment.