From 4938b8e3c18cebb034047d668bc188cb8e1dcfd3 Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Fri, 17 May 2024 09:15:42 -0600 Subject: [PATCH] spelling fixes --- examples/basic_bitcoin/src/bitcoin_wallet.ts | 2 +- examples/basic_bitcoin/test/tests.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/basic_bitcoin/src/bitcoin_wallet.ts b/examples/basic_bitcoin/src/bitcoin_wallet.ts index 8b6aa9a1f0..2629faa63e 100644 --- a/examples/basic_bitcoin/src/bitcoin_wallet.ts +++ b/examples/basic_bitcoin/src/bitcoin_wallet.ts @@ -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)); } diff --git a/examples/basic_bitcoin/test/tests.ts b/examples/basic_bitcoin/test/tests.ts index f02feed48c..d951af542e 100644 --- a/examples/basic_bitcoin/test/tests.ts +++ b/examples/basic_bitcoin/test/tests.ts @@ -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); }