pub trait TestOnlyHash {
    fn test_only_hash(&self) -> HashValue;
}
Expand description

Provides a test_only_hash() method that can be used in tests on types that implement serde::Serialize.

Example

use aptos_crypto::hash::TestOnlyHash;

b"hello world".test_only_hash();

Required Methods

Generates a hash used only for tests.

Implementors