mirror of
https://github.com/monero-project/monero.git
synced 2026-01-10 16:17:16 +09:00
- When background syncing, the wallet wipes the spend key from memory and processes all new transactions. The wallet saves all receives, spends, and "plausible" spends of receives the wallet does not know key images for. - When background sync disabled, the wallet processes all background synced txs and then clears the background sync cache. - Adding "plausible" spends to the background sync cache ensures that the wallet does not need to query the daemon to see if any received outputs were spent while background sync was enabled. This would harm privacy especially for users of 3rd party daemons. - To enable the feature in the CLI wallet, the user can set background-sync to reuse-wallet-password or custom-background-password and the wallet automatically syncs in the background when the wallet locks, then processes all background synced txs when the wallet is unlocked. - The custom-background-password option enables the user to open a distinct background wallet that only has a view key saved and can be opened/closed/synced separately from the main wallet. When the main wallet opens, it processes the background wallet's cache. - To enable the feature in the RPC wallet, there is a new `/setup_background_sync` endpoint. - HW, multsig and view-only wallets cannot background sync.
86 lines
4.6 KiB
C
86 lines
4.6 KiB
C
// Copyright (c) 2014-2022, The Monero Project
|
|
//
|
|
// All rights reserved.
|
|
//
|
|
// Redistribution and use in source and binary forms, with or without modification, are
|
|
// permitted provided that the following conditions are met:
|
|
//
|
|
// 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
// conditions and the following disclaimer.
|
|
//
|
|
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
// of conditions and the following disclaimer in the documentation and/or other
|
|
// materials provided with the distribution.
|
|
//
|
|
// 3. Neither the name of the copyright holder nor the names of its contributors may be
|
|
// used to endorse or promote products derived from this software without specific
|
|
// prior written permission.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
//
|
|
// Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
|
|
|
|
#pragma once
|
|
|
|
|
|
#define WALLET_RPC_ERROR_CODE_UNKNOWN_ERROR -1
|
|
#define WALLET_RPC_ERROR_CODE_WRONG_ADDRESS -2
|
|
#define WALLET_RPC_ERROR_CODE_DAEMON_IS_BUSY -3
|
|
#define WALLET_RPC_ERROR_CODE_GENERIC_TRANSFER_ERROR -4
|
|
#define WALLET_RPC_ERROR_CODE_WRONG_PAYMENT_ID -5
|
|
#define WALLET_RPC_ERROR_CODE_TRANSFER_TYPE -6
|
|
#define WALLET_RPC_ERROR_CODE_DENIED -7
|
|
#define WALLET_RPC_ERROR_CODE_WRONG_TXID -8
|
|
#define WALLET_RPC_ERROR_CODE_WRONG_SIGNATURE -9
|
|
#define WALLET_RPC_ERROR_CODE_WRONG_KEY_IMAGE -10
|
|
#define WALLET_RPC_ERROR_CODE_WRONG_URI -11
|
|
#define WALLET_RPC_ERROR_CODE_WRONG_INDEX -12
|
|
#define WALLET_RPC_ERROR_CODE_NOT_OPEN -13
|
|
#define WALLET_RPC_ERROR_CODE_ACCOUNT_INDEX_OUT_OF_BOUNDS -14
|
|
#define WALLET_RPC_ERROR_CODE_ADDRESS_INDEX_OUT_OF_BOUNDS -15
|
|
#define WALLET_RPC_ERROR_CODE_TX_NOT_POSSIBLE -16
|
|
#define WALLET_RPC_ERROR_CODE_NOT_ENOUGH_MONEY -17
|
|
#define WALLET_RPC_ERROR_CODE_TX_TOO_LARGE -18
|
|
#define WALLET_RPC_ERROR_CODE_NOT_ENOUGH_OUTS_TO_MIX -19
|
|
#define WALLET_RPC_ERROR_CODE_ZERO_DESTINATION -20
|
|
#define WALLET_RPC_ERROR_CODE_WALLET_ALREADY_EXISTS -21
|
|
#define WALLET_RPC_ERROR_CODE_INVALID_PASSWORD -22
|
|
#define WALLET_RPC_ERROR_CODE_NO_WALLET_DIR -23
|
|
#define WALLET_RPC_ERROR_CODE_NO_TXKEY -24
|
|
#define WALLET_RPC_ERROR_CODE_WRONG_KEY -25
|
|
#define WALLET_RPC_ERROR_CODE_BAD_HEX -26
|
|
#define WALLET_RPC_ERROR_CODE_BAD_TX_METADATA -27
|
|
#define WALLET_RPC_ERROR_CODE_ALREADY_MULTISIG -28
|
|
#define WALLET_RPC_ERROR_CODE_WATCH_ONLY -29
|
|
#define WALLET_RPC_ERROR_CODE_BAD_MULTISIG_INFO -30
|
|
#define WALLET_RPC_ERROR_CODE_NOT_MULTISIG -31
|
|
#define WALLET_RPC_ERROR_CODE_WRONG_LR -32
|
|
#define WALLET_RPC_ERROR_CODE_THRESHOLD_NOT_REACHED -33
|
|
#define WALLET_RPC_ERROR_CODE_BAD_MULTISIG_TX_DATA -34
|
|
#define WALLET_RPC_ERROR_CODE_MULTISIG_SIGNATURE -35
|
|
#define WALLET_RPC_ERROR_CODE_MULTISIG_SUBMISSION -36
|
|
#define WALLET_RPC_ERROR_CODE_NOT_ENOUGH_UNLOCKED_MONEY -37
|
|
#define WALLET_RPC_ERROR_CODE_NO_DAEMON_CONNECTION -38
|
|
#define WALLET_RPC_ERROR_CODE_BAD_UNSIGNED_TX_DATA -39
|
|
#define WALLET_RPC_ERROR_CODE_BAD_SIGNED_TX_DATA -40
|
|
#define WALLET_RPC_ERROR_CODE_SIGNED_SUBMISSION -41
|
|
#define WALLET_RPC_ERROR_CODE_SIGN_UNSIGNED -42
|
|
#define WALLET_RPC_ERROR_CODE_NON_DETERMINISTIC -43
|
|
#define WALLET_RPC_ERROR_CODE_INVALID_LOG_LEVEL -44
|
|
#define WALLET_RPC_ERROR_CODE_ATTRIBUTE_NOT_FOUND -45
|
|
#define WALLET_RPC_ERROR_CODE_ZERO_AMOUNT -46
|
|
#define WALLET_RPC_ERROR_CODE_INVALID_SIGNATURE_TYPE -47
|
|
#define WALLET_RPC_ERROR_CODE_DISABLED -48
|
|
#define WALLET_RPC_ERROR_CODE_PROXY_ALREADY_DEFINED -49
|
|
#define WALLET_RPC_ERROR_CODE_NONZERO_UNLOCK_TIME -50
|
|
#define WALLET_RPC_ERROR_CODE_IS_BACKGROUND_WALLET -51
|
|
#define WALLET_RPC_ERROR_CODE_IS_BACKGROUND_SYNCING -52
|