Skip to content

Commit 14cc843

Browse files
committed
fix override properties
1 parent 9bfad39 commit 14cc843

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/contracts/GPv2Wrapper.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import "./interfaces/IGPv2Wrapper.sol";
2121
* @title A minimalist base that can be extended to safely implement a wrapper. It ensures the most important basic functions of a wrapper are fulfilled
2222
*/
2323
abstract contract GPv2Wrapper is IGPv2Wrapper {
24-
IGPv2Settlement public immutable UPSTREAM_SETTLEMENT;
25-
GPv2Authentication public immutable AUTHENTICATOR;
24+
IGPv2Settlement public immutable override UPSTREAM_SETTLEMENT;
25+
GPv2Authentication public immutable override AUTHENTICATOR;
2626

2727
constructor(address payable upstreamSettlement_) {
2828
UPSTREAM_SETTLEMENT = IGPv2Settlement(upstreamSettlement_);
@@ -40,7 +40,7 @@ abstract contract GPv2Wrapper is IGPv2Wrapper {
4040
GPv2Trade.Data[] calldata trades,
4141
GPv2Interaction.Data[][3] calldata interactions,
4242
bytes calldata wrapperData
43-
) external {
43+
) external override {
4444
// Revert if not a valid solver
4545
if (!AUTHENTICATOR.isSolver(msg.sender)) {
4646
revert("GPv2Wrapper: not a solver");

0 commit comments

Comments
 (0)