Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 92d4006

Browse files
committed
remove unnecessary imports
1 parent 1210f98 commit 92d4006

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

token/cli/src/bench.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
use {
33
crate::{clap_app::Error, command::CommandResult, config::Config},
44
clap::ArgMatches,
5-
solana_clap_v3_utils::input_parsers::{pubkey_of_signer, signer::SignerSource, Amount},
5+
solana_clap_v3_utils::input_parsers::{signer::SignerSource, Amount},
66
solana_client::{
77
nonblocking::rpc_client::RpcClient, rpc_client::RpcClient as BlockingRpcClient,
88
tpu_client::TpuClient, tpu_client::TpuClientConfig,

token/cli/src/clap_app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use {
88
solana_clap_v3_utils::{
99
fee_payer::fee_payer_arg,
1010
input_parsers::{signer::SignerSourceParserBuilder, Amount},
11-
input_validators::{is_pubkey, is_url_or_moniker, is_valid_pubkey, is_valid_signer},
11+
input_validators::{is_url_or_moniker, is_valid_signer},
1212
memo::memo_arg,
1313
nonce::*,
1414
offline::{self, *},

token/cli/src/command.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ use {
1818
UiAccountData,
1919
},
2020
solana_clap_v3_utils::{
21-
input_parsers::{
22-
pubkey_of_signer, pubkeys_of_multiple_signers, signer::SignerSource, Amount,
23-
},
21+
input_parsers::{pubkey_of_signer, signer::SignerSource, Amount},
2422
keypair::signer_from_path,
2523
},
2624
solana_cli_output::{

0 commit comments

Comments
 (0)