diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bb125765..06cf353fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Fixed -- invalid seed usage in the HDKey ([#377](https://github.com/casper-ecosystem/casper-js-sdk/pull/377)) +- invalid seed usage in the HDKey ([#410](https://github.com/casper-ecosystem/casper-js-sdk/issues/410)) ## [2.15.4] - 2024-02-12 diff --git a/src/lib/CasperHDKeys/CasperHDKey.ts b/src/lib/CasperHDKeys/CasperHDKey.ts index b8f3db51e..50629438e 100644 --- a/src/lib/CasperHDKeys/CasperHDKey.ts +++ b/src/lib/CasperHDKeys/CasperHDKey.ts @@ -9,7 +9,6 @@ export abstract class CasperHDKey { // Registered at https://github.com/satoshilabs/slips/blob/master/slip-0044.md static readonly bip44Index = 506; - // TODO: Check if seed can be public constructor( public seed: Uint8Array, public signatureAlgorithm: SignatureAlgorithm