Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
formatting nits
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasad1 committed Jun 2, 2018
1 parent 2a00b7e commit 88460f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ethcore/src/account_provider/no_hw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ pub struct HardwareWalletManager;

impl HardwareWalletManager {
pub fn wallet_info(&self, _: &Address) -> Option<WalletInfo> {
None
None
}

pub fn list_wallets(&self) -> Vec<WalletInfo> {
Vec::with_capacity(0)
}

pub fn list_locked_wallets(&self) -> Result<Vec<String>, HardwareError> {
Err(HardwareError::NoWallet)
Err(HardwareError::NoWallet)
}

pub fn pin_matrix_ack(&self, _: &str, _: &str) -> Result<bool, HardwareError> {
Err(HardwareError::NoWallet)
Err(HardwareError::NoWallet)
}
}

Expand Down

0 comments on commit 88460f8

Please sign in to comment.