Skip to content
This repository was archived by the owner on Mar 25, 2024. It is now read-only.

chore: update docs #79

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bootloader/test_infra/src/hook.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ fn test_hook_as_string(hook_param: U256) -> String {
}

fn test_hook_as_int_or_hex(hook_param: U256) -> String {
// For long data, it is better to use hex-encoding for greater readibility
// For long data, it is better to use hex-encoding for greater readability
if hook_param > U256::from(u64::max_value()) {
let mut bytes = [0u8; 32];
hook_param.to_big_endian(&mut bytes);
Expand Down