From 74740fb5812e13c1b094827bea969994170ce1c9 Mon Sep 17 00:00:00 2001 From: Peter White Date: Mon, 9 Dec 2024 16:41:10 -0700 Subject: [PATCH] fix: outdated field name --- crates/pop-cli/src/commands/up/contract.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/pop-cli/src/commands/up/contract.rs b/crates/pop-cli/src/commands/up/contract.rs index 485120bd..d8db466c 100644 --- a/crates/pop-cli/src/commands/up/contract.rs +++ b/crates/pop-cli/src/commands/up/contract.rs @@ -369,7 +369,7 @@ impl UpContractCommand { let transaction_data = TransactionData::new(self.url.to_string(), call_data); // starts server let mut wallet = WalletIntegrationManager::new(ui, transaction_data); - log::step(format!("Wallet signing portal started at http://{}", wallet.addr))?; + log::step(format!("Wallet signing portal started at http://{}", wallet.rpc_url))?; log::step("Waiting for signature... Press Ctrl+C to terminate early.")?; loop {