Struct sp_state_machine::ProvingBackend
source · [−]pub struct ProvingBackend<'a, S: 'a + TrieBackendStorage<H>, H: 'a + Hasher>(_);
Expand description
Patricia trie-based backend which also tracks all touched storage trie values. These can be sent to remote node and used as a proof of execution.
Implementations
impl<'a, S: 'a + TrieBackendStorage<H>, H: 'a + Hasher> ProvingBackend<'a, S, H> where
H::Out: Codec,
impl<'a, S: 'a + TrieBackendStorage<H>, H: 'a + Hasher> ProvingBackend<'a, S, H> where
H::Out: Codec,
Create new proving backend.
pub fn new_with_recorder(
backend: &'a TrieBackend<S, H>,
proof_recorder: ProofRecorder<H::Out>
) -> Self
pub fn new_with_recorder(
backend: &'a TrieBackend<S, H>,
proof_recorder: ProofRecorder<H::Out>
) -> Self
Create new proving backend with the given recorder.
Extracting the gathered unordered proof.
Returns the estimated encoded size of the proof.
The estimation is maybe bigger (by in maximum 4 bytes), but never smaller than the actual encoded proof.
Trait Implementations
impl<'a, S, H> Backend<H> for ProvingBackend<'a, S, H> where
S: 'a + TrieBackendStorage<H>,
H: 'a + Hasher,
H::Out: Ord + Codec,
impl<'a, S, H> Backend<H> for ProvingBackend<'a, S, H> where
S: 'a + TrieBackendStorage<H>,
H: 'a + Hasher,
H::Out: Ord + Codec,
type Transaction = S::Overlay
type Transaction = S::Overlay
Storage changes to be applied if committing
type TrieBackendStorage = S
type TrieBackendStorage = S
Type of trie backend storage.
Get keyed storage or None if there is nothing associated.
Get keyed child storage or None if there is nothing associated.
Iterate over storage starting at key, for a given prefix and child trie.
Aborts as soon as f
returns false.
Warning, this fails at first error when usual iteration skips errors.
If allow_missing
is true, iteration stops when it reaches a missing trie node.
Otherwise an error is produced. Read more
Retrieve all entries keys of storage and call f
for each of those keys.
Aborts as soon as f
returns false. Read more
Return the next key in storage in lexicographic order or None
if there is no value.
Return the next key in child storage in lexicographic order or None
if there is no value.
Retrieve all entries keys which start with the given prefix and
call f
for each of those keys. Read more
Retrieve all entries keys and values of which start with the given prefix and
call f
for each of those keys. Read more
Retrieve all child entries keys which start with the given prefix and
call f
for each of those keys. Read more
Get all key/value pairs into a Vec.
Get all keys with given prefix
Get all keys of child storage with given prefix
Calculate the storage root, with given delta over what is already stored in the backend, and produce a “transaction” that can be used to commit. Does not include child storage updates. Read more
Calculate the child storage root, with given delta over what is already stored in the backend, and produce a “transaction” that can be used to commit. The second argument is true if child storage root equals default storage root. Read more
Register stats from overlay of state machine. Read more
Query backend usage statistics (i/o, memory) Read more
Get keyed storage value hash or None if there is nothing associated.
Get child keyed storage value hash or None if there is nothing associated.
true if a key exists in storage.
true if a key exists in child storage.
Try convert into trie backend.
Calculate the storage root, with given delta over what is already stored in the backend, and produce a “transaction” that can be used to commit. Does include child storage updates. Read more
fn commit(
&self,
_: H::Out,
_: Self::Transaction,
_: StorageCollection,
_: ChildStorageCollection
) -> Result<(), Self::Error>
fn commit(
&self,
_: H::Out,
_: Self::Transaction,
_: StorageCollection,
_: ChildStorageCollection
) -> Result<(), Self::Error>
Commit given transaction to storage.
Get the read/write count of the db
fn get_whitelist(&self) -> Vec<TrackedStorageKey>ⓘ
fn get_whitelist(&self) -> Vec<TrackedStorageKey>ⓘ
Get the whitelist for tracking db reads/writes
Update the whitelist for tracking db reads/writes
Estimate proof size
Auto Trait Implementations
impl<'a, S, H> !RefUnwindSafe for ProvingBackend<'a, S, H>
impl<'a, S, H> Send for ProvingBackend<'a, S, H>
impl<'a, S, H> Sync for ProvingBackend<'a, S, H>
impl<'a, S, H> Unpin for ProvingBackend<'a, S, H> where
<H as Hasher>::Out: Unpin,
impl<'a, S, H> !UnwindSafe for ProvingBackend<'a, S, H>
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>ⓘimpl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<I, A> Iterator for Box<I, A> where
I: Iterator + ?Sized,
A: Allocator, type Item = <I as Iterator>::Item;impl<F, A> Future for Box<F, A> where
F: Future + Unpin + ?Sized,
A: Allocator + 'static, type Output = <F as Future>::Output;
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>ⓘimpl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<I, A> Iterator for Box<I, A> where
I: Iterator + ?Sized,
A: Allocator, type Item = <I as Iterator>::Item;impl<F, A> Future for Box<F, A> where
F: Future + Unpin + ?Sized,
A: Allocator + 'static, type Output = <F as Future>::Output;
impl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<I, A> Iterator for Box<I, A> where
I: Iterator + ?Sized,
A: Allocator, type Item = <I as Iterator>::Item;impl<F, A> Future for Box<F, A> where
F: Future + Unpin + ?Sized,
A: Allocator + 'static, type Output = <F as Future>::Output;
Convert Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more
The counterpart to unchecked_from
.
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more