Struct ethcore::state::backend::ProofCheck[][src]

pub struct ProofCheck(_);

A raw backend used to check proofs of execution.

This doesn't delete anything since execution proofs won't have mangled keys and we want to avoid collisions.

Methods

impl ProofCheck
[src]

Create a new ProofCheck backend from the given state items.

Trait Implementations

impl Clone for ProofCheck
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ProofCheck
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl HashDB<KeccakHasher> for ProofCheck
[src]

Get the keys in the database together with number of underlying references.

Look up a given hash into the bytes that hash to it, returning None if the hash is not known. Read more

Check for the existance of a hash-key.

Insert a datum item into the DB and return the datum's hash for a later lookup. Insertions are counted and the equivalent number of remove()s must be performed before the data is considered dead. Read more

Like insert(), except you provide the key and the data is all moved.

Remove a datum previously inserted. Insertions can be "owed" such that the same number of insert()s may happen without the data being eventually being inserted into the DB. It can be "owed" more than once. Read more

impl AsHashDB<KeccakHasher> for ProofCheck
[src]

Perform upcast to HashDB for anything that derives from HashDB.

Perform mutable upcast to HashDB for anything that derives from HashDB.

impl Backend for ProofCheck
[src]

Treat the backend as a read-only hashdb.

Treat the backend as a writeable hashdb.

Add an account entry to the cache.

Add a global code cache entry. This doesn't need to worry about canonicality because it simply maps hashes to raw code and will always be correct in the absence of hash collisions. Read more

Get basic copy of the cached account. Not required to include storage. Returns 'None' if cache is disabled or if the account is not cached. Read more

Get value from a cached account. None is passed to the closure if the account entry cached is known not to exist. None is returned if the entry is not cached. Read more

Get cached code based on hash.

Note that an account with the given address is non-null.

Check whether an account is known to be empty. Returns true if known to be empty, false otherwise. Read more

Auto Trait Implementations

impl Send for ProofCheck

impl Sync for ProofCheck