2017-02-21 17:38:18 +00:00
|
|
|
// Copyright (c) 2014-2017, 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
|
2017-02-19 02:42:10 +00:00
|
|
|
#define WALLET_RPC_ERROR_CODE_ACCOUNT_INDEX_OUTOFBOUND -14
|
|
|
|
#define WALLET_RPC_ERROR_CODE_ADDRESS_INDEX_OUTOFBOUND -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
|