diff options
Diffstat (limited to 'impls/monero_rust/src/main.rs')
| -rw-r--r-- | impls/monero_rust/src/main.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/impls/monero_rust/src/main.rs b/impls/monero_rust/src/main.rs index eb9e148..aae688b 100644 --- a/impls/monero_rust/src/main.rs +++ b/impls/monero_rust/src/main.rs @@ -1,9 +1,7 @@ -use monero_rust::{ - WalletError, WalletManager, NETWORK_TYPE_MAINNET, -}; +use monero_rust::{WalletError, WalletManager, NETWORK_TYPE_MAINNET}; fn main() -> Result<(), WalletError> { - let wallet_manager = WalletManager::new()?; + let wallet_manager = WalletManager::new(None)?; let wallet = wallet_manager.create_wallet( "wallet", |
