mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-15 16:12:16 +00:00
fix bip49 derivation path test
This commit is contained in:
parent
7ec0606b08
commit
a15c975553
1 changed files with 2 additions and 4 deletions
|
@ -1,5 +1,3 @@
|
|||
import 'dart:convert';
|
||||
|
||||
import 'package:decimal/decimal.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
import 'package:hive/hive.dart';
|
||||
|
@ -42,9 +40,9 @@ void main() {
|
|||
});
|
||||
|
||||
test("particl DerivePathType enum", () {
|
||||
expect(DerivePathType.values.length, 3);
|
||||
expect(DerivePathType.values.length, 2);
|
||||
expect(DerivePathType.values.toString(),
|
||||
"[DerivePathType.bip44, DerivePathType.bip49, DerivePathType.bip84]"); // TODO does particl have BIP49, P2WPKH-P2SH? I'd think no
|
||||
"[DerivePathType.bip44, DerivePathType.bip84]");
|
||||
});
|
||||
|
||||
group("bip32 node/root", () {
|
||||
|
|
Loading…
Reference in a new issue