diff --git a/Cargo.lock b/Cargo.lock index c7450ba..fd935dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1505,13 +1505,13 @@ dependencies = [ [[package]] name = "drillx" -version = "1.0.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed194680ad239acd0779eb590f4205da5b8268ab58d31e891d24fb2c44742178" +checksum = "0c5fd3a8f11a6420d6efb1952c8c2e788627cb2c9e834537dc4b6bd036461646" dependencies = [ - "blake3", "equix", "serde", + "sha3 0.10.8", "solana-program", "strum", ] @@ -2837,9 +2837,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "ore-api" -version = "2.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbce54d03a5a2da25aafc7e1f2de5f726c051b7bf3f1845fde26025dbf87892b" +checksum = "0697cf6480f6c81117db19ceeaa66206b76f1d5b0e2896767f6d797f50181475" dependencies = [ "array-const-fn-init", "bytemuck", @@ -2857,9 +2857,9 @@ dependencies = [ [[package]] name = "ore-utils" -version = "2.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eae4b8b98f72e6a87bf1ff3c347c81f766051b9b90d46566831b39261c2103fc" +checksum = "90a09a7a1e296ce157c75cf41145edb3608b838f9503125897552f4fe49acf64" dependencies = [ "bytemuck", "solana-program", diff --git a/Cargo.toml b/Cargo.toml index 7a724d6..d694da3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,12 +26,12 @@ cached = "0.46.1" chrono = "0.4.38" clap = { version = "4.4.12", features = ["derive"] } colored = "2.0" -drillx = "1.0.0" +drillx = "2.0.0" # drillx = { git = "https://github.com/regolith-labs/drillx", branch = "master", features = ["solana"] } futures = "0.3.30" num_cpus = "1.16.0" -ore-api = "2.0.0" -ore-utils = "2.0.0" +ore-api = "2.1.0" +ore-utils = "2.1.0" # ore = { package = "ore-program", git = "https://github.com/regolith-labs/ore", rev = "891565dff603891e540603d8399c233071f036af" } # ore = { package = "ore-program", git = "https://github.com/regolith-labs/ore", branch = "hardhat/v2" } # ore-api = { git = "https://github.com/regolith-labs/ore", rev = "ce9a701" } @@ -51,6 +51,7 @@ spl-associated-token-account = { version = "^2.3", features = [ tokio = "1.35.1" # [patch.crates-io] +# drillx = { path = "../drillx/drillx" } # ore-api = { path = "../ore/api" } # ore-utils = { path = "../ore/utils" } diff --git a/src/send_and_confirm.rs b/src/send_and_confirm.rs index 8a0adcc..b66ee7f 100644 --- a/src/send_and_confirm.rs +++ b/src/send_and_confirm.rs @@ -135,6 +135,8 @@ impl Miner { } } } + } else { // MI + println!("No status"); } } }