namada_vm 0.48.3

The Namada VM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! VP WASM compilation cache

use super::common::{Cache, CacheName};

/// VP WASM compilation cache handle. Thread-safe.
pub type VpCache<A> = Cache<Name, A>;

/// VP cache name
#[derive(Debug, Clone)]
pub struct Name;

impl CacheName for Name {
    fn name() -> &'static str {
        "VP"
    }
}