Change String type to list for BIP32 pubkeys reading

This commit is contained in:
poka 2021-02-12 18:44:17 +01:00
parent 2ec8949dde
commit 0aa5d8a5af
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ class WalletOptionsProvider with ChangeNotifier {
isWalletUnlock = true;
notifyListeners();
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]);
print(_hdWallets);