Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
}
Callers
1
inserting_same_key_twice_does_not_increase_size
Function · 0.70
Calls
1
load
Method · 0.80
Tested by
no test coverage detected