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/
|
cd /opt/android/cake_wallet/scripts/android/
|
||||||
source ./app_env.sh cakewallet
|
source ./app_env.sh cakewallet
|
||||||
./build_haven_all.sh
|
./build_haven_all.sh
|
||||||
|
./build_monero_all.sh
|
||||||
|
|
||||||
- name: Install Flutter dependencies
|
- name: Install Flutter dependencies
|
||||||
run: |
|
run: |
|
||||||
|
|
|
@ -168,16 +168,17 @@ class WalletTypeFormState extends State<WalletTypeForm> {
|
||||||
Future<void> onTypeSelected() async {
|
Future<void> onTypeSelected() async {
|
||||||
if (selected == null) throw Exception('Wallet Type is not selected yet.');
|
if (selected == null) throw Exception('Wallet Type is not selected yet.');
|
||||||
|
|
||||||
if (selected == WalletType.haven && widget.isCreate) {
|
// ToDo: Recomment
|
||||||
return await showPopUp<void>(
|
// if (selected == WalletType.haven && widget.isCreate) {
|
||||||
context: context,
|
// return await showPopUp<void>(
|
||||||
builder: (BuildContext context) => PopUpCancellableAlertDialog(
|
// context: context,
|
||||||
contentText: S.of(context).pause_wallet_creation,
|
// builder: (BuildContext context) => PopUpCancellableAlertDialog(
|
||||||
actionButtonText: S.of(context).ok,
|
// contentText: S.of(context).pause_wallet_creation,
|
||||||
buttonAction: () => Navigator.of(context).pop(),
|
// actionButtonText: S.of(context).ok,
|
||||||
),
|
// buttonAction: () => Navigator.of(context).pop(),
|
||||||
);
|
// ),
|
||||||
}
|
// );
|
||||||
|
// }
|
||||||
|
|
||||||
widget.onTypeSelected(context, selected!);
|
widget.onTypeSelected(context, selected!);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Build all Haven Stuff
|
echo "Building Haven"
|
||||||
./build_iconv.sh
|
./build_iconv.sh
|
||||||
./build_boost.sh
|
./build_boost.sh
|
||||||
./build_openssl.sh
|
./build_openssl.sh
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue