diff --git a/README.md b/README.md index 4c00ed5..d3de7d2 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ Options: --no_setup [...] Start replaying immediately. --decimal [...] - Start replaying immediately. + Return decimal values, not hex. -c, --contract_address ... Address of the contract we're tracking storage. -l, --storage_slot ... diff --git a/src/cli_arg.rs b/src/cli_arg.rs index f4b8d07..e34488f 100644 --- a/src/cli_arg.rs +++ b/src/cli_arg.rs @@ -64,7 +64,7 @@ pub fn create_match() -> clap::Command { .arg(Arg::new("decimal") .long("decimal") .num_args(0..) - .help("Start replaying immediately.")) + .help("Return decimal values, not hex.")) .arg(Arg::new("contract_address") .long("contract_address") .short('c')