#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
pub struct ReceiptReference {
pub receipt_id: near_primitives::hash::CryptoHash,
}
#[derive(serde::Serialize, serde::Deserialize, Debug)]
pub struct RpcReceiptRequest {
#[serde(flatten)]
pub receipt_reference: ReceiptReference,
}
#[derive(serde::Serialize, serde::Deserialize, Debug)]
pub struct RpcReceiptResponse {
#[serde(flatten)]
pub receipt_view: near_primitives::views::ReceiptView,
}
#[derive(thiserror::Error, Debug, serde::Serialize, serde::Deserialize)]
#[serde(tag = "name", content = "info", rename_all = "SCREAMING_SNAKE_CASE")]
pub enum RpcReceiptError {
#[error("The node reached its limits. Try again later. More details: {error_message}")]
InternalError { error_message: String },
#[error("Receipt with id {receipt_id} has never been observed on this node")]
UnknownReceipt { receipt_id: near_primitives::hash::CryptoHash },
}
impl From<RpcReceiptError> for crate::errors::RpcError {
fn from(error: RpcReceiptError) -> Self {
let error_data = match serde_json::to_value(error) {
Ok(value) => value,
Err(err) => {
return Self::new_internal_error(
None,
format!("Failed to serialize RpcReceiptError: {:?}", err),
)
}
};
Self::new_internal_or_handler_error(Some(error_data.clone()), error_data)
}
}