diff options
author | stoffu <stoffu@protonmail.ch> | 2018-01-31 17:52:14 +0900 |
---|---|---|
committer | stoffu <stoffu@protonmail.ch> | 2018-01-31 17:52:31 +0900 |
commit | 7712509644c336835c2ccb51d18ffd76a909bb5b (patch) | |
tree | 70b569f7e024a188e910d08f119e3069f7174afe /src/wallet/wallet_rpc_server.cpp | |
parent | Merge pull request #3198 (diff) | |
download | monero-7712509644c336835c2ccb51d18ffd76a909bb5b.tar.xz |
wallet-rpc: rename *_INDEX_OUTOFBOUND into *_INDEX_OUT_OF_BOUNDS
Diffstat (limited to 'src/wallet/wallet_rpc_server.cpp')
-rw-r--r-- | src/wallet/wallet_rpc_server.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/wallet_rpc_server.cpp b/src/wallet/wallet_rpc_server.cpp index 97faf0b56..eb18d5091 100644 --- a/src/wallet/wallet_rpc_server.cpp +++ b/src/wallet/wallet_rpc_server.cpp @@ -2439,12 +2439,12 @@ namespace tools } catch (const error::account_index_outofbound& e) { - er.code = WALLET_RPC_ERROR_CODE_ACCOUNT_INDEX_OUTOFBOUND; + er.code = WALLET_RPC_ERROR_CODE_ACCOUNT_INDEX_OUT_OF_BOUNDS; er.message = e.what(); } catch (const error::address_index_outofbound& e) { - er.code = WALLET_RPC_ERROR_CODE_ADDRESS_INDEX_OUTOFBOUND; + er.code = WALLET_RPC_ERROR_CODE_ADDRESS_INDEX_OUT_OF_BOUNDS; er.message = e.what(); } catch (const std::exception& e) |