Skip to content

Commit

Permalink
remove solana-sdk from watchtower (#4004)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey authored Dec 9, 2024
1 parent 32741b4 commit e9e211f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion watchtower/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@ log = { workspace = true }
solana-clap-utils = { workspace = true }
solana-cli-config = { workspace = true }
solana-cli-output = { workspace = true }
solana-hash = { workspace = true }
solana-logger = { workspace = true }
solana-metrics = { workspace = true }
solana-native-token = { workspace = true }
solana-notifier = { workspace = true }
solana-pubkey = { workspace = true }
solana-rpc-client = { workspace = true }
solana-rpc-client-api = { workspace = true }
solana-sdk = { workspace = true }
solana-version = { workspace = true }

[package.metadata.docs.rs]
Expand Down
8 changes: 3 additions & 5 deletions watchtower/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,13 @@ use {
input_validators::{is_parsable, is_pubkey_or_keypair, is_url, is_valid_percentage},
},
solana_cli_output::display::format_labeled_address,
solana_hash::Hash,
solana_metrics::{datapoint_error, datapoint_info},
solana_native_token::{sol_to_lamports, Sol},
solana_notifier::{NotificationType, Notifier},
solana_pubkey::Pubkey,
solana_rpc_client::rpc_client::RpcClient,
solana_rpc_client_api::{client_error, response::RpcVoteAccountStatus},
solana_sdk::{
hash::Hash,
native_token::{sol_to_lamports, Sol},
pubkey::Pubkey,
},
std::{
collections::HashMap,
error,
Expand Down

0 comments on commit e9e211f

Please sign in to comment.