Skip to content

Commit

Permalink
chore: fix typos (#521)
Browse files Browse the repository at this point in the history
  • Loading branch information
vuittont60 authored Nov 7, 2023
1 parent c55f3d2 commit 1748375
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const dryRunPreimage = async (argv: Config) => {
}

// if dry-run preimage has extrinsic arguments then dry-run extrinsic
// this is usefull to test something after preimage is applied
// this is useful to test something after preimage is applied
if (argv['extrinsic']) {
await context.chain.newBlock()
const input = argv['address'] ? { call: argv['extrinsic'], address: argv['address'] } : argv['extrinsic']
Expand Down
2 changes: 1 addition & 1 deletion packages/chopsticks/src/plugins/run-block/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export interface RunBlockParams {
*/
includeBlockDetails: Params['includeBlockDetails']
/**
* The parent block hash to run on top of. Deafult to chain head.
* The parent block hash to run on top of. Default to chain head.
*/
parent: Params['parent']
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e/src/crowdloan.redeem.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('Polkadot Crowdloan Refund', async () => {
}, 200_000)

it.runIf(process.env.CI)(
"should refund Acala's contributers",
"should refund Acala's contributors",
async () => {
// trigger refund
await expect(api.tx.crowdloan.refund(3336).signAndSend(alice)).resolves.toBeTruthy()
Expand Down
2 changes: 1 addition & 1 deletion packages/web-test/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ function App() {
>
Alice transfer 1000 to Bob
</Button>
{transferDisabled && <Pre>Transfering...</Pre>}
{transferDisabled && <Pre>Transferring...</Pre>}
{bobBalance && <Pre>Bob balance: {bobBalance}</Pre>}
</Section>
</Container>
Expand Down

0 comments on commit 1748375

Please sign in to comment.