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