mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-22 18:44:31 +00:00
fix: banano address type
This commit is contained in:
parent
061f7d5c0d
commit
3a58955f60
1 changed files with 1 additions and 1 deletions
|
@ -279,7 +279,7 @@ class BananoWallet extends CoinServiceAPI
|
||||||
Future<Address?> get _currentReceivingAddress => db
|
Future<Address?> get _currentReceivingAddress => db
|
||||||
.getAddresses(walletId)
|
.getAddresses(walletId)
|
||||||
.filter()
|
.filter()
|
||||||
.typeEqualTo(AddressType.nano)
|
.typeEqualTo(AddressType.banano)
|
||||||
.and()
|
.and()
|
||||||
.subTypeEqualTo(AddressSubType.receiving)
|
.subTypeEqualTo(AddressSubType.receiving)
|
||||||
.sortByDerivationIndexDesc()
|
.sortByDerivationIndexDesc()
|
||||||
|
|
Loading…
Reference in a new issue