Skip to content

Commit

Permalink
remote-wallet: Move Locator to its own module
Browse files Browse the repository at this point in the history
  • Loading branch information
t-nelson committed Apr 27, 2021
1 parent 4ce4f04 commit cac666d
Show file tree
Hide file tree
Showing 5 changed files with 663 additions and 619 deletions.
5 changes: 2 additions & 3 deletions remote-wallet/src/ledger.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
use {
crate::{
ledger_error::LedgerError,
remote_wallet::{
Manufacturer, RemoteWallet, RemoteWalletError, RemoteWalletInfo, RemoteWalletManager,
},
locator::Manufacturer,
remote_wallet::{RemoteWallet, RemoteWalletError, RemoteWalletInfo, RemoteWalletManager},
},
console::Emoji,
dialoguer::{theme::ColorfulTheme, Select},
Expand Down
1 change: 1 addition & 0 deletions remote-wallet/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#![allow(clippy::integer_arithmetic)]
pub mod ledger;
pub mod ledger_error;
pub mod locator;
pub mod remote_keypair;
pub mod remote_wallet;
Loading

0 comments on commit cac666d

Please sign in to comment.