From 904b20139f742977e059e2caa45e62e930475553 Mon Sep 17 00:00:00 2001 From: Warm Beer Date: Tue, 7 Jan 2025 16:18:30 +0100 Subject: [PATCH] Merge pull request maidsafe#2609 --- autonomi/src/client/mod.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/autonomi/src/client/mod.rs b/autonomi/src/client/mod.rs index 2f11877623..39940c41e2 100644 --- a/autonomi/src/client/mod.rs +++ b/autonomi/src/client/mod.rs @@ -79,6 +79,9 @@ pub struct ClientConfig { /// /// If not provided, the client will use the default bootstrap peers. pub peers: Option>, + + /// EVM network to use for quotations and payments. + pub evm_network: EvmNetwork, } /// Error returned by [`Client::init`]. @@ -136,6 +139,7 @@ impl Client { Self::init_with_config(ClientConfig { local, peers: Some(peers), + evm_network: Default::default(), }) .await }