Skip to content

Commit

Permalink
Change default network in typescript bindings to testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch committed Nov 18, 2024
1 parent a8fdd5a commit d01f13b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/soroban-cli/src/commands/contract/bindings/typescript.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ impl NetworkRunnable for Cmd {
..
} = self.network.get(&self.locator).ok().unwrap_or_else(|| {
network::DEFAULTS
.get("futurenet")
.expect("why did we remove the default futurenet network?")
.get("testnet")
.expect("why did we remove the default testnet network?")
.into()
});
let absolute_path = self.output_dir.canonicalize()?;
Expand Down

0 comments on commit d01f13b

Please sign in to comment.