Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #545

Merged
merged 2 commits into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/pages/test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const Test: NextPage = () => {
<p>
{hasTested ? (
<Description>
Your wallet has already been tested succesfully.
Your wallet has already been tested successfully.
</Description>
) : (
<Description>
Expand Down
2 changes: 1 addition & 1 deletion staking/integration-tests/tests/claim.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down