Move derivation path into sdk (#16603)

* Move DerivationPath to sdk

* Remove eprintln
This commit is contained in:
Tyera Eulberg
2021-04-16 16:03:24 -06:00
committed by GitHub
parent 6444f0e57b
commit 52f4b96a80
6 changed files with 227 additions and 201 deletions

View File

@@ -1,13 +1,16 @@
use crate::{
ledger::get_ledger_from_info,
remote_wallet::{
DerivationPath, RemoteWallet, RemoteWalletError, RemoteWalletInfo, RemoteWalletManager,
RemoteWalletType,
use {
crate::{
ledger::get_ledger_from_info,
remote_wallet::{
RemoteWallet, RemoteWalletError, RemoteWalletInfo, RemoteWalletManager,
RemoteWalletType,
},
},
solana_sdk::{
derivation_path::DerivationPath,
pubkey::Pubkey,
signature::{Signature, Signer, SignerError},
},
};
use solana_sdk::{
pubkey::Pubkey,
signature::{Signature, Signer, SignerError},
};
pub struct RemoteKeypair {