Skip to main content

BlockChainContextRequest

Enum BlockChainContextRequest 

Source
pub enum BlockChainContextRequest {
Show 16 variants CurrentRxVms, BatchGetDifficulties(Vec<(u64, HardFork)>), NewRXVM(([u8; 32], Arc<RandomXVm>)), Update(NewBlockData), PopBlocks { numb_blocks: usize, }, HardForkInfos, FeeEstimate { grace_blocks: u64, }, RctOutputDistribution { from_height: u64, to_height: Option<NonZero<u64>>, cumulative: bool, }, CalculatePow { hardfork: HardFork, height: usize, block: Box<Block>, seed_hash: [u8; 32], }, ClearAltCache, AltChains, AltChainContextCache { prev_id: [u8; 32], _token: AltChainRequestToken, }, AltChainDifficultyCache { prev_id: [u8; 32], _token: AltChainRequestToken, }, AltChainWeightCache { prev_id: [u8; 32], _token: AltChainRequestToken, }, AltChainRxVM { height: usize, chain: Chain, _token: AltChainRequestToken, }, AddAltChainContextCache { cache: Box<AltChainContextCache>, _token: AltChainRequestToken, },
}
Expand description

A request to the blockchain context cache.

Variants§

§

CurrentRxVms

Gets all the current RandomX VMs.

§

BatchGetDifficulties(Vec<(u64, HardFork)>)

Get the next difficulties for these blocks.

Inputs: a list of block timestamps and hfs

The number of difficulties returned will be one more than the number of timestamps/ hfs.

§

NewRXVM(([u8; 32], Arc<RandomXVm>))

Add a VM that has been created outside of the blockchain context service to the blockchain context. This is useful when batch calculating POW as you may need to create a new VM if you batch a lot of blocks together, it would be wasteful to then not give this VM to the context service to then use when it needs to init a VM with the same seed.

This should include the seed used to init this VM and the VM.

§

Update(NewBlockData)

A request to add a new block to the cache.

§

PopBlocks

Pop blocks from the cache to the specified height.

Fields

§numb_blocks: usize

The number of blocks to pop from the top of the chain.

§Panics

This will panic if the number of blocks will pop the genesis block.

§

HardForkInfos

Get information on all hardforks.

§

FeeEstimate

Get the current fee estimate.

Fields

§grace_blocks: u64

TODO

§

RctOutputDistribution

Get the RCT output distribution.

Fields

§from_height: u64

The height to start the distribution from.

§to_height: Option<NonZero<u64>>

The height to end the distribution at, None means the top block.

§cumulative: bool

Whether the distribution should be cumulative.

§

CalculatePow

Calculate proof-of-work for this block.

Fields

§hardfork: HardFork

The hardfork of the protocol at this block height.

§height: usize

The height of the block.

§block: Box<Block>

The block data.

This is boxed because [Block] causes this enum to be 1200 bytes, where the 2nd variant is only 96 bytes.

§seed_hash: [u8; 32]

The seed hash for the proof-of-work.

§

ClearAltCache

Clear the alt chain context caches.

§

AltChains

Get information on all the current alternate chains.

§

AltChainContextCache

A request for an alt chain context cache.

This variant is private and is not callable from outside this crate, the block verifier service will handle getting the alt cache.

Fields

§prev_id: [u8; 32]

The previous block field in a BlockHeader.

§_token: AltChainRequestToken

An internal token to prevent external crates calling this request.

§

AltChainDifficultyCache

A request for a difficulty cache of an alternative chain.

This variant is private and is not callable from outside this crate, the block verifier service will handle getting the difficulty cache of an alt chain.

Fields

§prev_id: [u8; 32]

The previous block field in a BlockHeader.

§_token: AltChainRequestToken

An internal token to prevent external crates calling this request.

§

AltChainWeightCache

A request for a block weight cache of an alternative chain.

This variant is private and is not callable from outside this crate, the block verifier service will handle getting the weight cache of an alt chain.

Fields

§prev_id: [u8; 32]

The previous block field in a BlockHeader.

§_token: AltChainRequestToken

An internal token to prevent external crates calling this request.

§

AltChainRxVM

A request for a RX VM for an alternative chain.

Response variant: BlockChainContextResponse::AltChainRxVM.

This variant is private and is not callable from outside this crate, the block verifier service will handle getting the randomX VM of an alt chain.

Fields

§height: usize

The height the RandomX VM is needed for.

§chain: Chain

The chain to look in for the seed.

§_token: AltChainRequestToken

An internal token to prevent external crates calling this request.

§

AddAltChainContextCache

A request to add an alt chain context cache to the context cache.

This variant is private and is not callable from outside this crate, the block verifier service will handle returning the alt cache to the context service.

Fields

§cache: Box<AltChainContextCache>

The cache.

§_token: AltChainRequestToken

An internal token to prevent external crates calling this request.

Trait Implementations§

Source§

impl Clone for BlockChainContextRequest

Source§

fn clone(&self) -> BlockChainContextRequest

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for BlockChainContextRequest

Source§

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

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

impl Service<BlockChainContextRequest> for BlockchainContextService

Source§

type Response = BlockChainContextResponse

Responses given by the service.
Source§

type Error = Box<dyn Error + Sync + Send>

Errors produced by the service.
Source§

type Future = Pin<Box<dyn Future<Output = Result<<BlockchainContextService as Service<BlockChainContextRequest>>::Response, <BlockchainContextService as Service<BlockChainContextRequest>>::Error>> + Send>>

The future response value.
Source§

fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>

Returns Poll::Ready(Ok(())) when the service is able to process requests. Read more
Source§

fn call(&mut self, req: BlockChainContextRequest) -> Self::Future

Process the request and return the response asynchronously. Read more

Auto Trait Implementations§

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
§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

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>,

Source§

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

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 112 bytes

Size for each variant:

  • CurrentRxVms: 0 bytes
  • BatchGetDifficulties: 24 bytes
  • NewRXVM: 40 bytes
  • Update: 112 bytes
  • PopBlocks: 8 bytes
  • HardForkInfos: 0 bytes
  • FeeEstimate: 8 bytes
  • RctOutputDistribution: 24 bytes
  • CalculatePow: 56 bytes
  • ClearAltCache: 0 bytes
  • AltChains: 0 bytes
  • AltChainContextCache: 32 bytes
  • AltChainDifficultyCache: 32 bytes
  • AltChainWeightCache: 32 bytes
  • AltChainRxVM: 16 bytes
  • AddAltChainContextCache: 8 bytes