Skip to content

Commit

Permalink
run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Luu committed Mar 23, 2024
1 parent 0f1a0ea commit 6e50c49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/assertions/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from './subtle-crypto';
export * from './crypto';

export * from './crypto';
2 changes: 1 addition & 1 deletion packages/keys/src/key-pair.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export async function generateKeyPair(): Promise<CryptoKeyPair> {

export async function createKeyPairFromBytes(bytes: Uint8Array, extractable?: boolean): Promise<CryptoKeyPair> {
assertPRNGIsAvailable();

if (bytes.byteLength !== 64) {
throw new SolanaError(SOLANA_ERROR__KEYS__INVALID_KEY_PAIR_BYTE_LENGTH, { byteLength: bytes.byteLength });
}
Expand Down

0 comments on commit 6e50c49

Please sign in to comment.