From 747da2f8cbaaacbd804faf63147c865c05e418df Mon Sep 17 00:00:00 2001 From: Kevin Heavey Date: Mon, 25 Nov 2024 17:22:01 +0400 Subject: [PATCH] remove solana-sdk from solana-notifier (#3717) --- Cargo.lock | 2 +- notifier/Cargo.toml | 2 +- notifier/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 044cb68953cc79..9a0965ae548365 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7608,7 +7608,7 @@ dependencies = [ "log", "reqwest", "serde_json", - "solana-sdk", + "solana-hash", ] [[package]] diff --git a/notifier/Cargo.toml b/notifier/Cargo.toml index 7325d6e703e58a..270ba43d9c696c 100644 --- a/notifier/Cargo.toml +++ b/notifier/Cargo.toml @@ -13,7 +13,7 @@ edition = { workspace = true } log = { workspace = true } reqwest = { workspace = true, features = ["blocking", "brotli", "deflate", "gzip", "rustls-tls", "json"] } serde_json = { workspace = true } -solana-sdk = { workspace = true } +solana-hash = { workspace = true } [lib] name = "solana_notifier" diff --git a/notifier/src/lib.rs b/notifier/src/lib.rs index 75406d2fbdae33..23a66e2d5badb3 100644 --- a/notifier/src/lib.rs +++ b/notifier/src/lib.rs @@ -27,7 +27,7 @@ use log::*; use { reqwest::{blocking::Client, StatusCode}, serde_json::json, - solana_sdk::hash::Hash, + solana_hash::Hash, std::{env, str::FromStr, thread::sleep, time::Duration}, };