mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +00:00
additionalInfo backwards compat
This commit is contained in:
parent
fb0b87942a
commit
dc699c6551
1 changed files with 2 additions and 2 deletions
|
@ -218,8 +218,8 @@ class MoneroWallet extends CryptonoteWallet with CwBasedInterface {
|
|||
final addressString =
|
||||
(CwBasedInterface.cwWalletBase as MoneroWalletBase?)
|
||||
?.getTransactionAddress(
|
||||
addressInfo!['accountIndex'] as int,
|
||||
addressInfo['addressIndex'] as int,
|
||||
addressInfo?['accountIndex'] as int? ?? 0,
|
||||
addressInfo?['addressIndex'] as int? ?? 0,
|
||||
);
|
||||
|
||||
if (addressString != null) {
|
||||
|
|
Loading…
Reference in a new issue