zebrad 4.3.1

The Zcash Foundation's independent, consensus-compatible implementation of a Zcash node
Documentation
1
2
3
4
5
6
7
8
9
10
//! Hard-coded tests for recent sync lengths.

use super::super::RecentSyncLengths;

#[test]
fn recent_sync_lengths_are_initially_empty() {
    let (_recent_sync_lengths, receiver) = RecentSyncLengths::new();

    assert_eq!(receiver.borrow().len(), 0);
}