mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
Enable Haven Wallet Creation for testing
This commit is contained in:
parent
6666b0c1bd
commit
a776b1d203
3 changed files with 13 additions and 11 deletions
1
.github/workflows/pr_test_build_android.yml
vendored
1
.github/workflows/pr_test_build_android.yml
vendored
|
@ -87,6 +87,7 @@ jobs:
|
|||
cd /opt/android/cake_wallet/scripts/android/
|
||||
source ./app_env.sh cakewallet
|
||||
./build_haven_all.sh
|
||||
./build_monero_all.sh
|
||||
|
||||
- name: Install Flutter dependencies
|
||||
run: |
|
||||
|
|
|
@ -168,16 +168,17 @@ class WalletTypeFormState extends State<WalletTypeForm> {
|
|||
Future<void> onTypeSelected() async {
|
||||
if (selected == null) throw Exception('Wallet Type is not selected yet.');
|
||||
|
||||
if (selected == WalletType.haven && widget.isCreate) {
|
||||
return await showPopUp<void>(
|
||||
context: context,
|
||||
builder: (BuildContext context) => PopUpCancellableAlertDialog(
|
||||
contentText: S.of(context).pause_wallet_creation,
|
||||
actionButtonText: S.of(context).ok,
|
||||
buttonAction: () => Navigator.of(context).pop(),
|
||||
),
|
||||
);
|
||||
}
|
||||
// ToDo: Recomment
|
||||
// if (selected == WalletType.haven && widget.isCreate) {
|
||||
// return await showPopUp<void>(
|
||||
// context: context,
|
||||
// builder: (BuildContext context) => PopUpCancellableAlertDialog(
|
||||
// contentText: S.of(context).pause_wallet_creation,
|
||||
// actionButtonText: S.of(context).ok,
|
||||
// buttonAction: () => Navigator.of(context).pop(),
|
||||
// ),
|
||||
// );
|
||||
// }
|
||||
|
||||
widget.onTypeSelected(context, selected!);
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Build all Haven Stuff
|
||||
echo "Building Haven"
|
||||
./build_iconv.sh
|
||||
./build_boost.sh
|
||||
./build_openssl.sh
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue