Skip to content

Commit

Permalink
fix: remove white space from typehash calculation (OZ H-07)
Browse files Browse the repository at this point in the history
Signed-off-by: Tomás Migone <[email protected]>
  • Loading branch information
tmigone committed Aug 23, 2024
1 parent ab8f39b commit 61bf0ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ contract TAPCollector is EIP712, GraphDirectory, ITAPCollector {
/// @notice The EIP712 typehash for the ReceiptAggregateVoucher struct
bytes32 private constant EIP712_RAV_TYPEHASH =
keccak256(
"ReceiptAggregateVoucher(address dataService, address serviceProvider,uint64 timestampNs,uint128 valueAggregate,bytes metadata)"
"ReceiptAggregateVoucher(address dataService,address serviceProvider,uint64 timestampNs,uint128 valueAggregate,bytes metadata)"
);

/// @notice Tracks the amount of tokens already collected by a data service from a payer to a receiver
Expand Down

0 comments on commit 61bf0ee

Please sign in to comment.