mirror of https://github.com/m2049r/xmrwallet.git
use monero v0.18.1.2 (#878)
This commit is contained in:
parent
1dc081834f
commit
1ddd4f30b9
|
@ -8,8 +8,8 @@ android {
|
||||||
applicationId "com.m2049r.xmrwallet"
|
applicationId "com.m2049r.xmrwallet"
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 31
|
targetSdkVersion 31
|
||||||
versionCode 3003
|
versionCode 3004
|
||||||
versionName "3.0.3 'Fluorine Fermi'"
|
versionName "3.0.4 'Fluorine Fermi'"
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
externalNativeBuild {
|
externalNativeBuild {
|
||||||
cmake {
|
cmake {
|
||||||
|
|
|
@ -796,9 +796,10 @@ struct Wallet
|
||||||
/**
|
/**
|
||||||
* @brief exchange_multisig_keys - provides additional key exchange round for arbitrary multisig schemes (like N-1/N, M/N)
|
* @brief exchange_multisig_keys - provides additional key exchange round for arbitrary multisig schemes (like N-1/N, M/N)
|
||||||
* @param info - base58 encoded key derivations returned by makeMultisig or exchangeMultisigKeys function call
|
* @param info - base58 encoded key derivations returned by makeMultisig or exchangeMultisigKeys function call
|
||||||
|
* @param force_update_use_with_caution - force multisig account to update even if not all signers contribute round messages
|
||||||
* @return new info string if more rounds required or an empty string if wallet creation is done
|
* @return new info string if more rounds required or an empty string if wallet creation is done
|
||||||
*/
|
*/
|
||||||
virtual std::string exchangeMultisigKeys(const std::vector<std::string> &info) = 0;
|
virtual std::string exchangeMultisigKeys(const std::vector<std::string> &info, const bool force_update_use_with_caution) = 0;
|
||||||
/**
|
/**
|
||||||
* @brief exportMultisigImages - exports transfers' key images
|
* @brief exportMultisigImages - exports transfers' key images
|
||||||
* @param images - output paramter for hex encoded array of images
|
* @param images - output paramter for hex encoded array of images
|
||||||
|
|
Loading…
Reference in New Issue