Skip to content
Snippets Groups Projects
Commit 0aa5d8a5 authored by poka's avatar poka
Browse files

Change String type to list for BIP32 pubkeys reading

parent 2ec8949d
No related branches found
No related tags found
No related merge requests found
...@@ -64,7 +64,7 @@ class WalletOptionsProvider with ChangeNotifier { ...@@ -64,7 +64,7 @@ class WalletOptionsProvider with ChangeNotifier {
isWalletUnlock = true; isWalletUnlock = true;
notifyListeners(); notifyListeners();
print('GET BIP32 accounts publickeys from this dewif'); print('GET BIP32 accounts publickeys from this dewif');
String _hdWallets = await DubpRust.getBip32DewifAccountsPublicKeys( List _hdWallets = await DubpRust.getBip32DewifAccountsPublicKeys(
dewif: _localDewif, secretCode: _pin, accountsIndex: [0, 1, 2]); dewif: _localDewif, secretCode: _pin, accountsIndex: [0, 1, 2]);
print(_hdWallets); print(_hdWallets);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment