From 99e0dcc38ea1ef34ecfc6dc435acd6b0566dc514 Mon Sep 17 00:00:00 2001 From: Naokiakazawa Date: Thu, 7 Sep 2023 20:56:15 +0900 Subject: [PATCH] fix deploy command messages --- src/deploy.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/deploy.rs b/src/deploy.rs index c2cc749..0142d6a 100644 --- a/src/deploy.rs +++ b/src/deploy.rs @@ -164,7 +164,8 @@ programs to Stylus chains here https://docs.arbitrum.io/stylus/stylus-quickstart .activate_program_address .unwrap_or(expected_program_addr); println!( - "Activating program at address {}", + "Activating program at address {}{}", + "0x".mint(), hex::encode(program_addr).mint() ); let activate_calldata = activation_calldata(&program_addr);