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

chore: fix some typos #544

Merged
merged 1 commit 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
4 changes: 2 additions & 2 deletions frontend/pages/test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ const Test: NextPage = () => {

return (
<Layout>
<SEO title={'Wallet Compatiblity Test'} />
<SEO title={'Wallet Compatibility Test'} />

<PanelLayout>
{stakeConnection ? (
<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/app/scripts/devnet_upgrade.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ interface ToPairAccountInterface {
// Matches each metadata account to the position account that it corresponds to. This is optimized to avoid RPC calls
// and reduce the number of findProgramAddress calls.
// Assumes each metadata account maps to one position account but there might be position accounts without a metadata
// account (if they've already been upgraded). If this assumption is not true, you can rewite this to use only the
// account (if they've already been upgraded). If this assumption is not true, you can rewrite this to use only the
// second pass.
async function pairAccounts<
P extends ToPairAccountInterface,
Expand Down
2 changes: 1 addition & 1 deletion staking/tests/vesting_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ describe("vesting", async () => {
);
});

it("create acccount that does not opt into governance", async () => {
it("create account that does not opt into governance", async () => {
await aliceConnection.provider.connection.requestAirdrop(
alice.publicKey,
1_000_000_000_000
Expand Down
Loading