Skip to content

Commit 9e8aa9e

Browse files
committed
fix: reinitializer and version for KlerosCore
1 parent 54d83a7 commit 9e8aa9e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

contracts/src/arbitration/KlerosCore.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {KlerosCoreBase, IDisputeKit, ISortitionModule, IERC20} from "./KlerosCor
88
/// Core arbitrator contract for Kleros v2.
99
/// Note that this contract trusts the PNK token, the dispute kit and the sortition module contracts.
1010
contract KlerosCore is KlerosCoreBase {
11-
string public constant override version = "0.9.3";
11+
string public constant override version = "0.9.4";
1212

1313
// ************************************* //
1414
// * Constructor * //
@@ -56,7 +56,7 @@ contract KlerosCore is KlerosCoreBase {
5656
);
5757
}
5858

59-
function initialize4() external reinitializer(4) {
59+
function initialize5() external reinitializer(5) {
6060
// NOP
6161
}
6262

contracts/src/arbitration/KlerosCoreNeo.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
99
/// Core arbitrator contract for Kleros v2.
1010
/// Note that this contract trusts the PNK token, the dispute kit and the sortition module contracts.
1111
contract KlerosCoreNeo is KlerosCoreBase {
12-
string public constant override version = "0.9.0";
12+
string public constant override version = "0.9.4";
1313

1414
// ************************************* //
1515
// * Storage * //

0 commit comments

Comments
 (0)