diff --git a/tap_aggregator/src/server.rs b/tap_aggregator/src/server.rs index 92b3b9ef..2f71edf6 100644 --- a/tap_aggregator/src/server.rs +++ b/tap_aggregator/src/server.rs @@ -160,7 +160,6 @@ fn aggregate_receipts_( wallet, accepted_addresses, ) - .await } }; diff --git a/tap_core/src/tap_manager/manager.rs b/tap_core/src/tap_manager/manager.rs index ba44f39e..e9994532 100644 --- a/tap_core/src/tap_manager/manager.rs +++ b/tap_core/src/tap_manager/manager.rs @@ -93,7 +93,7 @@ where } self.timestamp_check - .update_min_timestamp_ns(expected_rav.timestamp_ns) + .update_min_timestamp_ns(expected_rav.timestampNs) .await; self.executor @@ -104,7 +104,7 @@ where })?; self.timestamp_check - .update_min_timestamp_ns(expected_rav.timestamp_ns) + .update_min_timestamp_ns(expected_rav.timestampNs) .await; Ok(()) diff --git a/tap_integration_tests/tests/showcase.rs b/tap_integration_tests/tests/showcase.rs index 363dabd0..3e1fb35d 100644 --- a/tap_integration_tests/tests/showcase.rs +++ b/tap_integration_tests/tests/showcase.rs @@ -34,7 +34,7 @@ use tap_core::{ eip_712_signed_message::EIP712SignedMessage, tap_eip712_domain, tap_manager::SignedRAV, - tap_receipt::{Receipt, ReceiptCheck, ReceivedReceipt}, + tap_receipt::{Receipt, ReceivedReceipt}, }; use crate::indexer_mock;