From 5fe65f56d801c62661bca9add4fd7137597739de Mon Sep 17 00:00:00 2001 From: Hack666r Date: Tue, 31 Dec 2024 00:44:23 +0100 Subject: [PATCH] Fix typos (#545) * typo fix test.tsx * typo ffix claim.rs --- frontend/pages/test.tsx | 2 +- staking/integration-tests/tests/claim.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/pages/test.tsx b/frontend/pages/test.tsx index eb5f66a4c..a0754188a 100644 --- a/frontend/pages/test.tsx +++ b/frontend/pages/test.tsx @@ -46,7 +46,7 @@ const Test: NextPage = () => {

{hasTested ? ( - Your wallet has already been tested succesfully. + Your wallet has already been tested successfully. ) : ( diff --git a/staking/integration-tests/tests/claim.rs b/staking/integration-tests/tests/claim.rs index 3fa9f8c8c..9906c1742 100644 --- a/staking/integration-tests/tests/claim.rs +++ b/staking/integration-tests/tests/claim.rs @@ -148,7 +148,7 @@ fn test_claim() { let pool_data: PoolData = fetch_account_data_bytemuck(&mut svm, &pool_data_pubkey); assert_eq!(pool_data.claimable_rewards, 0); - // duting epoch x + 2, the reward for epoch x + 1 can be claimed + // during epoch x + 2, the reward for epoch x + 1 can be claimed // y = YIELD, cap = 0.5 PYTH, delegated = 1 PYTH // reward = cap * YIELD assert_eq!(custody_data.amount, STAKED_TOKENS + YIELD * 1 / 2);