MCPcopy Create free account
hub / github.com/circlefin/arc-node / load

Function load

crates/execution-txpool/src/validator.rs:932–934  ·  view source on GitHub ↗
(a: &AtomicU64)

Source from the content-addressed store, hash-verified

930 static BATCHES: AtomicU64 = AtomicU64::new(0);
931
932 fn load(a: &AtomicU64) -> u64 {
933 a.load(Ordering::Relaxed)
934 }
935 fn store(a: &AtomicU64, v: u64) {
936 a.store(v, Ordering::Relaxed);
937 }

Calls 1

loadMethod · 0.80

Tested by

no test coverage detected