From 05e1ffad78b6d44c82c5aaca267696179a5ef63a Mon Sep 17 00:00:00 2001 From: Hardhat Chad Date: Mon, 4 Aug 2025 15:01:13 -0700 Subject: [PATCH] signer --- cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/main.rs b/cli/src/main.rs index 7bce27f..3d0b660 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -163,7 +163,7 @@ async fn mine( return Err(anyhow::anyhow!("A better hash was already found.")); } println!("Found best hash: {:?}", best_hash.to_ascii_lowercase()); - let ix = ore_api::sdk::mine(payer.pubkey(), payer.pubkey(), block.id, best_nonce); + let ix = ore_api::sdk::mine(payer.pubkey(), block.id, best_nonce); submit_transaction(rpc, payer, &[ix]).await?; Ok(()) }