Skip to content

Commit

Permalink
test(wallet-integration): maybe a port problem ?
Browse files Browse the repository at this point in the history
  • Loading branch information
al3mart committed Dec 12, 2024
1 parent 193582a commit 0075e94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 @@ -406,7 +406,7 @@ mod tests {
use tokio::time::sleep;
use url::Url;

const WALLET_INT_URI: &str = "http://127.0.0.1:9090";
const WALLET_INT_URI: &str = "http://127.0.0.1:65535";
const WAIT_SECS: u64 = 100;

// This struct implements the [`Payload`] trait and is used to submit
Expand Down
2 changes: 1 addition & 1 deletion crates/pop-cli/src/wallet_integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ impl WalletIntegrationManager {
/// A `WalletIntegrationManager` instance, with access to the state and task handle for the
/// server.
pub fn new<F: Frontend>(frontend: F, payload: TransactionData) -> Self {
Self::new_with_address(frontend, payload, "127.0.0.1:9090")
Self::new_with_address(frontend, payload, "127.0.0.1:65535")
}

/// Same as `new`, but allows specifying the address to bind to.
Expand Down

0 comments on commit 0075e94

Please sign in to comment.