From f6decc2fb4378a19c5102be2f0868edfb19d1788 Mon Sep 17 00:00:00 2001 From: julian Date: Fri, 10 May 2024 10:39:34 -0600 Subject: [PATCH] add supported deviation path --- lib/wallets/crypto_currency/coins/peercoin.dart | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/lib/wallets/crypto_currency/coins/peercoin.dart b/lib/wallets/crypto_currency/coins/peercoin.dart index f149959b6..97ac2fa7f 100644 --- a/lib/wallets/crypto_currency/coins/peercoin.dart +++ b/lib/wallets/crypto_currency/coins/peercoin.dart @@ -28,11 +28,12 @@ class Peercoin extends Bip39HDCurrency { bool get torSupport => true; @override - String constructDerivePath( - {required DerivePathType derivePathType, - int account = 0, - required int chain, - required int index}) { + String constructDerivePath({ + required DerivePathType derivePathType, + int account = 0, + required int chain, + required int index, + }) { String coinType; switch (networkParams.wifPrefix) { case 183: // PPC mainnet wif. @@ -164,6 +165,7 @@ class Peercoin extends Bip39HDCurrency { @override List get supportedDerivationPathTypes => [ DerivePathType.bip44, + DerivePathType.bip84, ]; @override