scv-server 0.3.0

Authoritative session and tool server for SCV
Documentation
1
2
3
4
5
6
7
8
9
//! Unit tests for `src/lib.rs`.

#[test]
fn clients_and_tools_agree_on_the_depth_variable() {
    assert_eq!(
        scv_client::DELEGATION_DEPTH_VARIABLE,
        scv_tools::delegation::DEPTH_VARIABLE
    );
}