Skip to content

Commit ac47b95

Browse files
committed
refactor: fix contract name
1 parent fbdee86 commit ac47b95

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
## 0.1.0 (2021-12-16)
22

3-
- test: add evidence contract tests ([590d800](https://github.com/kleros/kleros-v2/commit/590d800))
4-
- test: added a test for IncrementalNG ([65a996b](https://github.com/kleros/kleros-v2/commit/65a996b))
5-
- test(EvidenceModule): add test file ([9f00f98](https://github.com/kleros/kleros-v2/commit/9f00f98))
63
- refactor: add arbitrator data index getter ([47a1623](https://github.com/kleros/kleros-v2/commit/47a1623))
74
- refactor: add evidence contracts ([09a34f3](https://github.com/kleros/kleros-v2/commit/09a34f3))
85
- refactor: add interfaces + capped math ([e25b21f](https://github.com/kleros/kleros-v2/commit/e25b21f))
6+
- refactor: add simple evidence home contract ([1b82f62](https://github.com/kleros/kleros-v2/commit/1b82f62))
97
- refactor: remove foreign evidence interface ([ff8c50c](https://github.com/kleros/kleros-v2/commit/ff8c50c))
108
- refactor(sdk): rename ([3241d10](https://github.com/kleros/kleros-v2/commit/3241d10))
9+
- test: add evidence contract tests ([590d800](https://github.com/kleros/kleros-v2/commit/590d800))
10+
- test: added a test for IncrementalNG ([65a996b](https://github.com/kleros/kleros-v2/commit/65a996b))
11+
- test(EvidenceModule): add test file ([9f00f98](https://github.com/kleros/kleros-v2/commit/9f00f98))
1112
- chore: added GitHub code scanning ([4a70475](https://github.com/kleros/kleros-v2/commit/4a70475))
1213
- chore: added the hardhat config for layer 2 networks, added hardhat-deploy and mocha ([a12ea0e](https://github.com/kleros/kleros-v2/commit/a12ea0e))
1314
- chore: gitignore typechain ([b50f777](https://github.com/kleros/kleros-v2/commit/b50f777))

contracts/src/evidence/EvidenceModule.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pragma solidity ^0.8;
1919
import "./IEvidence.sol";
2020
import "../arbitration/IArbitrator.sol";
2121

22-
contract ModeratedEvidenceModule is IEvidence {
22+
contract EvidenceModule is IEvidence {
2323
IArbitrator private constant NULL_ARBITRATOR = IArbitrator(address(0x0));
2424

2525
constructor() {}

0 commit comments

Comments
 (0)