Skip to content

Commit 25c613f

Browse files
committed
fix: correct output format for transaction hash in table display
1 parent 42d820a commit 25c613f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tx/invoke.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ pub async fn run(args: Args, ctx: &crate::Context) -> Result<()> {
9191
}
9292

9393
OutputFormat::Table => {
94-
println!("Tx Hash: {}", hex::encode(&hash));
94+
println!("Tx Hash: {}", &hash);
9595
println!("Tx CBOR: {}", hex::encode(&cbor));
9696
}
9797
}

0 commit comments

Comments
 (0)