mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
* fix(cw_monero): prevent monero wallet from breaking during rename * update to cleaned up monero.dart * fix: transaction screen not refreshing in monero * fix: wallets not opening until app restart after rename. * fix(cw_decred): wallet renaming throwing * fix: transaction not being shown after sending until 1st confirmation * fix(cw_monero): loop safeguard * fix: don't await wallet.fetchTransactions
30 lines
592 B
Bash
Executable file
30 lines
592 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -x -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
if [[ ! -d "monero_c/.git" ]];
|
|
then
|
|
git clone https://github.com/mrcyjanek/monero_c --branch master monero_c
|
|
cd monero_c
|
|
git checkout b335585a7fb94b315eb52bd88f2da6d3489fa508
|
|
git reset --hard
|
|
git submodule update --init --force --recursive
|
|
./apply_patches.sh monero
|
|
./apply_patches.sh wownero
|
|
./apply_patches.sh zano
|
|
else
|
|
cd monero_c
|
|
fi
|
|
|
|
for coin in monero wownero zano;
|
|
do
|
|
if [[ ! -f "$coin/.patch-applied" ]];
|
|
then
|
|
./apply_patches.sh $coin
|
|
fi
|
|
done
|
|
cd ..
|
|
|
|
echo "monero_c source prepared".
|