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

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jleni committed Mar 15, 2019
1 parent 6628496 commit 41ee37b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/keyring/ed25519/ledgertm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@ use crate::{
error::{KmsError, KmsErrorKind::*},
keyring::{ed25519::Signer, KeyRing, SigningProvider},
};
use ledger_tendermint::signer::Ed25519LedgerTmAppSigner;
use signatory::PublicKeyed;
use tendermint::TendermintKey;
use ledger_tendermint::signer::Ed25519LedgerTmAppSigner;

/// Create Ledger Tendermint signer object from the given configuration
pub fn init(
keyring: &mut KeyRing,
ledgertm_configs: &[LedgerTendermintConfig]) -> Result<(), KmsError> {
ledgertm_configs: &[LedgerTendermintConfig],
) -> Result<(), KmsError> {
if ledgertm_configs.is_empty() {
return Ok(());
}
Expand Down

0 comments on commit 41ee37b

Please sign in to comment.