Skip to content

Commit

Permalink
fix: rebase main
Browse files Browse the repository at this point in the history
Signed-off-by: Gustavo Inacio <[email protected]>
  • Loading branch information
gusinacio committed Mar 4, 2024
1 parent 7cf2ed0 commit 6f5c821
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion tap_aggregator/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ fn aggregate_receipts_(
wallet,
accepted_addresses,
)
.await
}
};

Expand Down
4 changes: 2 additions & 2 deletions tap_core/src/tap_manager/manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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(())
Expand Down
2 changes: 1 addition & 1 deletion tap_integration_tests/tests/showcase.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 6f5c821

Please sign in to comment.