Skip to content

Commit

Permalink
spelling fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed May 17, 2024
1 parent 4c77483 commit 4938b8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/basic_bitcoin/src/bitcoin_wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ function mockSigner(
_derivationPath: Uint8Array[],
_messageHash: Uint8Array
): Uint8Array {
// bitcoin.script.signature.encode threw away most of the signature when it was all 0's so we need to fill it up with anything besides just 0s
// bitcoin.script.signature.encode threw away most of the signature when it was all 0s so we need to fill it up with anything besides just 0s
return Uint8Array.from(new Array(64).fill(1));
}

Expand Down
2 changes: 1 addition & 1 deletion examples/basic_bitcoin/test/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export function getTests(canisterId: string): Test[] {
}
},
{
name: 'Generate blocks to ensure that enough of the canisters block rewards are available to spend',
name: "Generate blocks to ensure that enough of the canister's block rewards are available to spend",
prep: async () => {
generate(10);
}
Expand Down

0 comments on commit 4938b8e

Please sign in to comment.