docs: call many docs (#5331)

This commit is contained in:
Matthias Seitz
2023-11-06 18:20:40 +01:00
committed by GitHub
parent 7d0abeff54
commit 73b11de894

View File

@ -1,14 +1,14 @@
//use crate::access_list::AccessList;
use crate::{AccessList, BlockId, BlockOverrides};
use alloy_primitives::{Address, Bytes, B256, U256, U64, U8};
use serde::{Deserialize, Deserializer, Serialize, Serializer};
/// Bundle of transactions
#[derive(Debug, Clone, Default, Eq, PartialEq, Serialize, Deserialize)]
#[serde(default, rename_all = "camelCase")]
pub struct Bundle {
/// Transactions
/// All transactions to execute
pub transactions: Vec<CallRequest>,
/// Block overides
/// Block overrides to apply
pub block_override: Option<BlockOverrides>,
}
@ -26,14 +26,24 @@ pub struct StateContext {
#[derive(Debug, Clone, Default, Eq, PartialEq, Serialize, Deserialize)]
#[serde(default, rename_all = "camelCase")]
pub struct EthCallResponse {
#[serde(skip_serializing_if = "Option::is_none")]
/// eth_call output (if no error)
pub output: Option<Bytes>,
#[serde(skip_serializing_if = "Option::is_none")]
pub output: Option<Bytes>,
/// eth_call output (if error)
#[serde(skip_serializing_if = "Option::is_none")]
pub error: Option<String>,
}
impl EthCallResponse {
/// Returns the output if present, otherwise returns the error.
pub fn ensure_output(self) -> Result<Bytes, String> {
match self.output {
Some(output) => Ok(output),
None => Err(self.error.unwrap_or_else(|| "Unknown error".to_string())),
}
}
}
/// Represents a transaction index where -1 means all transactions
#[derive(Debug, Copy, Clone, Eq, PartialEq, Default)]
pub enum TransactionIndex {