Skip to content

Commit

Permalink
Merge pull request maidsafe#2609
Browse files Browse the repository at this point in the history
  • Loading branch information
mickvandijke committed Jan 7, 2025
1 parent 9857040 commit 904b201
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions autonomi/src/client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ pub struct ClientConfig {
///
/// If not provided, the client will use the default bootstrap peers.
pub peers: Option<Vec<Multiaddr>>,

/// EVM network to use for quotations and payments.
pub evm_network: EvmNetwork,
}

/// Error returned by [`Client::init`].
Expand Down Expand Up @@ -136,6 +139,7 @@ impl Client {
Self::init_with_config(ClientConfig {
local,
peers: Some(peers),
evm_network: Default::default(),
})
.await
}
Expand Down

0 comments on commit 904b201

Please sign in to comment.