Skip to content

Commit

Permalink
chore(up-contract): outdated field name and clippy allow
Browse files Browse the repository at this point in the history
  • Loading branch information
peterwht committed Dec 9, 2024
1 parent ff9d067 commit 6b2787a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crates/pop-cli/src/commands/up/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 2 additions & 0 deletions crates/pop-cli/src/wallet_integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ impl WalletIntegrationManager {
}

/// Signals the wallet integration server to shut down.
#[allow(dead_code)]
pub async fn terminate(&mut self) -> anyhow::Result<()> {
terminate_helper(&self.state).await
}
Expand Down Expand Up @@ -229,6 +230,7 @@ pub struct FrontendFromString {
content: String,
}

#[allow(dead_code)]
impl FrontendFromString {
pub fn new(content: String) -> Self {
Self { content }
Expand Down

0 comments on commit 6b2787a

Please sign in to comment.