mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
c0cd68a823
Some checks are pending
Cache Dependencies / test (push) Waiting to run
* update monero_c commit * fix: no element in getAllUnusedSubAddresses * fix: Wallet created with empty seed and 0 as private key The error that was there is caused when wallet is being created, but it errors out, so better handling of errors should be all that's needed, as it is not an error on it's own, but rather lack of handling. * fix: create transaction multi dest function is missing * update monero_c hash * fix: receiving on 2 different addresses shows as 1
31 lines
580 B
Bash
Executable file
31 lines
580 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 rewrite-wip
|
|
cd monero_c
|
|
git checkout d1e246aaf4c53b60ff9e4ab4a4ac3ae4a1f94a33
|
|
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".
|