Skip to content

Commit f6da5e4

Browse files
committed
fix(tap-graph): reorder ReceiptAggregateVoucher fields to match contract
Swap serviceProvider and dataService field order to match GraphTallyCollector contract's EIP-712 typehash expectations. Signed-off-by: Natanael Mojica <[email protected]>
1 parent a80461c commit f6da5e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tap_graph/src/v2/rav.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ sol! {
3232
bytes32 collectionId;
3333
// The address of the payer the RAV was issued by
3434
address payer;
35-
// The address of the data service the RAV was issued to
36-
address dataService;
3735
// The address of the service provider the RAV was issued to
3836
address serviceProvider;
37+
// The address of the data service the RAV was issued to
38+
address dataService;
3939
// The RAV timestamp, indicating the latest TAP Receipt in the RAV
4040
uint64 timestampNs;
4141
// Total amount owed to the service provider since the beginning of the

0 commit comments

Comments
 (0)