pub struct MemoryStackState<'backend, 'config, B> { /* private fields */ }

Implementations§

source§

impl<'backend, 'config, B: Backend> MemoryStackState<'backend, 'config, B>

source

pub fn new( metadata: StackSubstateMetadata<'config>, backend: &'backend mut B ) -> Self

source

pub fn account_mut(&mut self, address: H160) -> &mut MemoryStackAccount

Returns a mutable reference to an account given its address

source

pub fn deconstruct( self ) -> (impl IntoIterator<Item = Apply<impl IntoIterator<Item = (H256, H256)>>>, impl IntoIterator<Item = Log>)

source

pub fn withdraw(&mut self, address: H160, value: U256) -> Result<(), ExitError>

source

pub fn deposit(&mut self, address: H160, value: U256)

Trait Implementations§

source§

impl<'backend, 'config, B: Backend> Backend for MemoryStackState<'backend, 'config, B>

source§

fn gas_price(&self) -> U256

Gas price. Unused for London.
source§

fn origin(&self) -> H160

Origin.
source§

fn block_hash(&self, number: U256) -> H256

Environmental block hash.
source§

fn block_number(&self) -> U256

Environmental block number.
source§

fn block_coinbase(&self) -> H160

Environmental coinbase.
source§

fn block_timestamp(&self) -> U256

Environmental block timestamp.
source§

fn block_difficulty(&self) -> U256

Environmental block difficulty.
source§

fn block_randomness(&self) -> Option<H256>

Get environmental block randomness.
source§

fn block_gas_limit(&self) -> U256

Environmental block gas limit.
source§

fn block_base_fee_per_gas(&self) -> U256

Environmental block base fee.
source§

fn chain_id(&self) -> U256

Environmental chain ID.
source§

fn exists(&self, address: H160) -> bool

Whether account at address exists.
source§

fn basic(&self, address: H160) -> Basic

Get basic account information.
source§

fn code(&self, address: H160) -> Vec<u8>

Get account code.
source§

fn storage(&self, address: H160, key: H256) -> H256

Get storage value of address at index.
source§

fn original_storage(&self, address: H160, key: H256) -> Option<H256>

Get original storage value of address at index, if available.
source§

impl<'backend, 'config, B: Debug> Debug for MemoryStackState<'backend, 'config, B>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'backend, 'config, B: Backend> StackState<'config> for MemoryStackState<'backend, 'config, B>

source§

fn metadata(&self) -> &StackSubstateMetadata<'config>

source§

fn metadata_mut(&mut self) -> &mut StackSubstateMetadata<'config>

source§

fn enter(&mut self, gas_limit: u64, is_static: bool)

source§

fn exit_commit(&mut self) -> Result<(), ExitError>

source§

fn exit_revert(&mut self) -> Result<(), ExitError>

source§

fn exit_discard(&mut self) -> Result<(), ExitError>

source§

fn is_empty(&self, address: H160) -> bool

source§

fn deleted(&self, address: H160) -> bool

source§

fn is_cold(&self, address: H160) -> bool

source§

fn is_storage_cold(&self, address: H160, key: H256) -> bool

source§

fn inc_nonce(&mut self, address: H160) -> Result<(), ExitError>

source§

fn set_storage(&mut self, address: H160, key: H256, value: H256)

source§

fn reset_storage(&mut self, address: H160)

source§

fn log(&mut self, address: H160, topics: Vec<H256>, data: Vec<u8>)

source§

fn set_deleted(&mut self, address: H160)

source§

fn set_code(&mut self, address: H160, code: Vec<u8>)

source§

fn transfer(&mut self, transfer: Transfer) -> Result<(), ExitError>

source§

fn reset_balance(&mut self, address: H160)

source§

fn touch(&mut self, address: H160)

source§

fn code_size(&self, address: H160) -> U256

Fetch the code size of an address. Provide a default implementation by fetching the code, but can be customized to use a more performant approach that don’t need to fetch the code.
source§

fn code_hash(&self, address: H160) -> H256

Fetch the code hash of an address. Provide a default implementation by fetching the code, but can be customized to use a more performant approach that don’t need to fetch the code.
source§

fn record_external_operation( &mut self, _op: ExternalOperation ) -> Result<(), ExitError>

source§

fn record_external_dynamic_opcode_cost( &mut self, _opcode: Opcode, _gas_cost: GasCost, _target: StorageTarget ) -> Result<(), ExitError>

source§

fn record_external_cost( &mut self, _ref_time: Option<u64>, _proof_size: Option<u64>, _storage_growth: Option<u64> ) -> Result<(), ExitError>

source§

fn refund_external_cost( &mut self, _ref_time: Option<u64>, _proof_size: Option<u64> )

Auto Trait Implementations§

§

impl<'backend, 'config, B> RefUnwindSafe for MemoryStackState<'backend, 'config, B>
where B: RefUnwindSafe,

§

impl<'backend, 'config, B> Send for MemoryStackState<'backend, 'config, B>
where B: Send,

§

impl<'backend, 'config, B> Sync for MemoryStackState<'backend, 'config, B>
where B: Sync,

§

impl<'backend, 'config, B> Unpin for MemoryStackState<'backend, 'config, B>

§

impl<'backend, 'config, B> !UnwindSafe for MemoryStackState<'backend, 'config, B>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> JsonSchemaMaybe for T

§

impl<T> MaybeDebug for T
where T: Debug,