diff --git a/tap_core/src/error.rs b/tap_core/src/error.rs index f60e9e27..fcb881e9 100644 --- a/tap_core/src/error.rs +++ b/tap_core/src/error.rs @@ -59,7 +59,6 @@ pub enum Error { )] ReceiptTimestampLowerThanRav { rav_ts: u64, receipt_ts: u64 }, - /// Error when the min timestamp is greater than the max timestamp /// Used by [`crate::manager::Manager::create_rav_request()`] #[error("Timestamp range error: min_timestamp_ns: {min_timestamp_ns}, max_timestamp_ns: {max_timestamp_ns}. Adjust timestamp buffer.")] @@ -72,7 +71,6 @@ pub enum Error { #[error("Receipt error: {0}")] ReceiptError(#[from] ReceiptError), - /// Error when the recovered signer address is invalid /// Used by [`crate::manager::adapters::EscrowHandler`] #[error("Recovered sender address invalid {address}")] diff --git a/tap_core/src/lib.rs b/tap_core/src/lib.rs index 497fe061..bba38d8a 100644 --- a/tap_core/src/lib.rs +++ b/tap_core/src/lib.rs @@ -1,7 +1,6 @@ // Copyright 2023-, Semiotic AI, Inc. // SPDX-License-Identifier: Apache-2.0 - //! # Timeline Aggregation Protocol //! //! ## Overview diff --git a/tap_core/src/manager/tap_manager.rs b/tap_core/src/manager/tap_manager.rs index 48e4b062..45351710 100644 --- a/tap_core/src/manager/tap_manager.rs +++ b/tap_core/src/manager/tap_manager.rs @@ -7,7 +7,7 @@ use super::adapters::{EscrowHandler, RAVRead, RAVStore, ReceiptDelete, ReceiptRe use crate::{ rav::{RAVRequest, ReceiptAggregateVoucher, SignedRAV}, receipt::{ - checks::{TimestampCheck, CheckBatch, CheckList, UniqueCheck}, + checks::{CheckBatch, CheckList, TimestampCheck, UniqueCheck}, state::{Failed, Reserved}, ReceiptWithState, SignedReceipt, },