2018-01-07 05:05:16 +00:00
|
|
|
// Copyright (c) 2014-2018, The Monero Project
|
2014-07-23 13:03:52 +00:00
|
|
|
//
|
|
|
|
// 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
|
2014-04-02 16:00:17 +00:00
|
|
|
|
2014-05-03 16:19:43 +00:00
|
|
|
#pragma once
|
2014-04-02 16:00:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
#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
|
2014-05-03 16:19:43 +00:00
|
|
|
#define WALLET_RPC_ERROR_CODE_WRONG_PAYMENT_ID -5
|
2014-05-27 10:52:11 +00:00
|
|
|
#define WALLET_RPC_ERROR_CODE_TRANSFER_TYPE -6
|
2015-01-11 11:06:35 +00:00
|
|
|
#define WALLET_RPC_ERROR_CODE_DENIED -7
|
2016-04-20 17:19:42 +00:00
|
|
|
#define WALLET_RPC_ERROR_CODE_WRONG_TXID -8
|
2016-04-23 20:46:48 +00:00
|
|
|
#define WALLET_RPC_ERROR_CODE_WRONG_SIGNATURE -9
|
2016-07-15 11:11:55 +00:00
|
|
|
#define WALLET_RPC_ERROR_CODE_WRONG_KEY_IMAGE -10
|
2016-11-28 14:07:25 +00:00
|
|
|
#define WALLET_RPC_ERROR_CODE_WRONG_URI -11
|
2017-02-04 11:40:49 +00:00
|
|
|
#define WALLET_RPC_ERROR_CODE_WRONG_INDEX -12
|
2017-04-02 22:09:36 +00:00
|
|
|
#define WALLET_RPC_ERROR_CODE_NOT_OPEN -13
|
2018-01-31 08:52:14 +00:00
|
|
|
#define WALLET_RPC_ERROR_CODE_ACCOUNT_INDEX_OUT_OF_BOUNDS -14
|
|
|
|
#define WALLET_RPC_ERROR_CODE_ADDRESS_INDEX_OUT_OF_BOUNDS -15
|
2017-10-23 02:27:02 +00:00
|
|
|
#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
|
2017-09-12 01:05:41 +00:00
|
|
|
#define WALLET_RPC_ERROR_CODE_NO_TXKEY -24
|
|
|
|
#define WALLET_RPC_ERROR_CODE_WRONG_KEY -25
|
2017-11-11 09:17:04 +00:00
|
|
|
#define WALLET_RPC_ERROR_CODE_BAD_HEX -26
|
|
|
|
#define WALLET_RPC_ERROR_CODE_BAD_TX_METADATA -27
|
2017-11-27 20:09:04 +00:00
|
|
|
#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
|
2017-11-27 20:09:16 +00:00
|
|
|
#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
|
2018-01-28 11:27:19 +00:00
|
|
|
#define WALLET_RPC_ERROR_CODE_NOT_ENOUGH_UNLOCKED_MONEY -37
|
2018-01-29 07:28:25 +00:00
|
|
|
#define WALLET_RPC_ERROR_CODE_NO_DAEMON_CONNECTION -38
|
wallet-rpc: watch-only and cold wallet features added
- unsigned_txset, signed_txset in transfer / submit_transfer / sign_transfer
- export_outputs, import_outputs
Squashed commits:
[f4d9f3d4] wallet-rpc: do_not_relay removed from submit_transfer
[5b16a86f] wallet-rpc: review-fix - method signature changes, renaming
[b7fbb10a] wallet-rpc: naming fixes (unsigned vs signed), consts renamed
[8c7d2727] wallet-rpc: sign_transfer added
[481d024a] wallet2: sign_tx splitted to work with strings and structs, more granular
[2a474db9] wallet-rpc: wallet2::load_unsigned_tx split to load from str, file
[b1e3a018] wallet-rpc: review fix, load_tx_from_str variable rename
[1f6373be] wallet-rpc: review fix: save_tx_to_{str,file}
[2a08eafc] wallet-rpc: review comments fixes
- redundant this removed from wallet2.cpp
- load_tx_from_str, load_tx_from_file
[43498052] wallet-rpc: submit_transfer added
[9c45d1ad] wallet-rpc: watch_only check, return unsigned_txset
[62831396] wallet2: added string variants to load_tx, save_tx
- analogously to save_multisig_tx
- required for monero-wallet-rpc to support watch-only wallet
2018-05-07 21:23:47 +00:00
|
|
|
#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
|
2018-10-18 21:14:06 +00:00
|
|
|
#define WALLET_RPC_ERROR_CODE_NON_DETERMINISTIC -43
|