upgrade to monero v0.17.1.1 (#692)

merge-requests/3/head
wow nero 4 years ago committed by GitHub
parent 1829d30b61
commit a93e96d34c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -506,6 +506,11 @@ struct Wallet
*/
virtual std::string publicMultisigSignerKey() const = 0;
/*!
* \brief stop - interrupts wallet refresh() loop once (doesn't stop background refresh thread)
*/
virtual void stop() = 0;
/*!
* \brief store - stores wallet to file.
* \param path - main filename to store wallet to. additionally stores address file and keys file.

@ -48,6 +48,7 @@ for arch in ${archs[@]}; do
TARGET_LIB_DIR=$lib_root/monero/$arch/lib
if [ -f "$TARGET_LIB_DIR/libwallet_api.a" ]; then
echo "$TARGET_LIB_DIR/libwallet_api.a exists"
continue
fi

@ -7,7 +7,7 @@ source script/env.sh
cd $EXTERNAL_LIBS_BUILD_ROOT
url="https://github.com/m2049r/monero"
version="release-v0.17.1.0-monerujo"
version="release-v0.17.1.1-monerujo"
if [ ! -d "monero" ]; then
git clone ${url} -b ${version}
@ -15,6 +15,7 @@ if [ ! -d "monero" ]; then
git submodule update --recursive --init
else
cd monero
git fetch
git checkout ${version}
git pull
git submodule update --recursive --init

Loading…
Cancel
Save