Skip to content

Commit

Permalink
Merge pull request #229 from cake-tech/CW-3
Browse files Browse the repository at this point in the history
Fixes for available addresses for electrum based wallets.
  • Loading branch information
mkyq authored Jan 13, 2022
2 parents c55144b + 6481ba2 commit 8b1d060
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cw_bitcoin/lib/electrum_wallet_addresses.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ abstract class ElectrumWalletAddressesBase extends WalletAddresses with Store {
ObservableList<BitcoinAddressRecord> addresses;

List<BitcoinAddressRecord> get availableAddresses => addresses
.where((addr) => addr.isHidden)
.where((addr) => !addr.isHidden)
.toList();

int accountIndex;
Expand Down
4 changes: 2 additions & 2 deletions scripts/android/app_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ MONERO_COM_BUNDLE_ID="com.cakewallet.monero"
MONERO_COM_PACKAGE="com.monero.app"

CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="4.2.9"
CAKEWALLET_BUILD_NUMBER=70
CAKEWALLET_VERSION="4.3.0"
CAKEWALLET_BUILD_NUMBER=71
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"
CAKEWALLET_PACKAGE="com.cakewallet.cake_wallet"

Expand Down
4 changes: 2 additions & 2 deletions scripts/ios/app_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ MONERO_COM_BUILD_NUMBER=6
MONERO_COM_BUNDLE_ID="com.cakewallet.monero"

CAKEWALLET_NAME="Cake Wallet"
CAKEWALLET_VERSION="4.2.9"
CAKEWALLET_BUILD_NUMBER=70
CAKEWALLET_VERSION="4.3.0"
CAKEWALLET_BUILD_NUMBER=71
CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet"

if ! [[ " ${TYPES[*]} " =~ " ${APP_IOS_TYPE} " ]]; then
Expand Down

0 comments on commit 8b1d060

Please sign in to comment.