cuprated/rpc/constants.rs
1//! Constants used within RPC.
2
3/// The string message used in RPC response fields for when
4/// `cuprated` does not support a field that `monerod` has.
5pub(super) const FIELD_NOT_SUPPORTED: &str = "`cuprated` does not support this field.";
6
7/// The error message returned when an unsupported RPC call is requested.
8pub(super) const UNSUPPORTED_RPC_CALL: &str = "This RPC call is not supported by Cuprate.";