fn clockbound_before()

in clock-bound-d/src/response.rs [275:277]


fn clockbound_before(earliest: u64, time_epoch: u64) -> u8 {
    return if time_epoch < earliest { 1 } else { 0 };
}