mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-02 16:26:48 +00:00
15 lines
243 B
C++
15 lines
243 B
C++
#pragma once
|
|
|
|
#include <xrpl/json/json_value.h>
|
|
#include <xrpl/protocol/ErrorCodes.h>
|
|
|
|
namespace xrpl {
|
|
|
|
// VFALCO NOTE these are deprecated
|
|
bool
|
|
isRpcError(json::Value jvResult);
|
|
json::Value
|
|
rpcError(ErrorCodeI iError);
|
|
|
|
} // namespace xrpl
|