From 879c39d00d93cb1ae274fd8fbcc7d58813d77f05 Mon Sep 17 00:00:00 2001 From: Hardhat Chad Date: Fri, 16 Feb 2024 19:52:16 +0000 Subject: [PATCH] fix --- tests/test_update_difficulty.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_update_difficulty.rs b/tests/test_update_difficulty.rs index 2e8be0c..003a37b 100644 --- a/tests/test_update_difficulty.rs +++ b/tests/test_update_difficulty.rs @@ -21,7 +21,7 @@ async fn test_update_difficulty() { let treasury_account = banks.get_account(TREASURY_ADDRESS).await.unwrap().unwrap(); let treasury = Treasury::try_from_bytes(&treasury_account.data).unwrap(); - // Submit update admin ix + // Submit update difficulty ix let new_difficulty = KeccakHash::new_unique(); let ix = ore::instruction::update_difficulty(payer.pubkey(), new_difficulty.into()); let tx = Transaction::new_signed_with_payer(&[ix], Some(&payer.pubkey()), &[&payer], blockhash);