Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions contracts/Ovm_SpokePool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ contract Ovm_SpokePool is SpokePool {
int64 relayerFeePct,
uint32 depositId,
uint32 rootBundleId,
bytes memory message,
int256 payoutAdjustment,
bytes32[] memory proof
) public override(SpokePool) nonReentrant {
Expand All @@ -114,6 +115,7 @@ contract Ovm_SpokePool is SpokePool {
relayerFeePct,
depositId,
rootBundleId,
message,
payoutAdjustment,
proof
);
Expand Down
2 changes: 2 additions & 0 deletions contracts/Polygon_SpokePool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ contract Polygon_SpokePool is IFxMessageProcessor, SpokePool {
int64 relayerFeePct,
uint32 depositId,
uint32 rootBundleId,
bytes memory message,
int256 payoutAdjustment,
bytes32[] memory proof
) public virtual override nonReentrant {
Expand All @@ -205,6 +206,7 @@ contract Polygon_SpokePool is IFxMessageProcessor, SpokePool {
relayerFeePct,
depositId,
rootBundleId,
message,
payoutAdjustment,
proof
);
Expand Down
Loading