mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 11:39:22 +00:00
17d34beae9
Some checks are pending
Cache Dependencies / test (push) Waiting to run
* improve exception throwing on broken wallets - put _lastOpenedWallet to avoid issues on windows (file is currently open by) - don't throw corruptedWalletsSeed - instead store it inside of secureStorage - await ExceptionHandler.onError calls where possible to makse sure that popup won't be canceled by some UI element - adjust BaseAlertDialog to be scrollable if the text is too long - add ExceptionHandler.resetLastPopupDate - that can be called when we want to show error report screen (bypassing cooldown) * fix: HiveError: Box has already been closed. * await the alerts to be sure that each one of them is being shown fix typo in secure storage * Update lib/core/backup_service.dart Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com> * address comments on github * don't store seeds in secure storage * fix wallet password * update monero_c update corrupted seeds UI prevent app from crashing when wallet is corrupted * show alert with seeds * Update corrupted wallet UI Fix wallet opening cache * remove unused code --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
31 lines
575 B
Bash
Executable file
31 lines
575 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -x -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
if [[ ! -d "monero_c" ]];
|
|
then
|
|
git clone https://github.com/mrcyjanek/monero_c --branch master
|
|
cd monero_c
|
|
git checkout c41c4dad9aa5003a914cfb2c528c76386f952665
|
|
git reset --hard
|
|
git submodule update --init --force --recursive
|
|
./apply_patches.sh monero
|
|
./apply_patches.sh wownero
|
|
else
|
|
cd monero_c
|
|
fi
|
|
|
|
if [[ ! -f "monero/.patch-applied" ]];
|
|
then
|
|
./apply_patches.sh monero
|
|
fi
|
|
|
|
if [[ ! -f "wownero/.patch-applied" ]];
|
|
then
|
|
./apply_patches.sh wownero
|
|
fi
|
|
cd ..
|
|
|
|
echo "monero_c source prepared".
|