Skip to content

Commit 875b0a3

Browse files
committed
fix: mock counter version
1 parent bdcb2a4 commit 875b0a3

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

test/mocks/MockCounter.sol

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.13;
2+
pragma solidity >=0.6.0 <0.9.0;
33

44
/// @notice Simple counter contract for testing multi-EVM deployments.
55
contract MockCounter {
66
uint256 public count;
77

8-
constructor() payable {
9-
count = 0;
10-
}
11-
128
function increment() public {
139
count++;
1410
}

0 commit comments

Comments
 (0)