Skip to content

Commit 308abcc

Browse files
authored
Adjust claim sentence (#419)
* fix claim construction * solhint fix
1 parent 8512c8b commit 308abcc

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

contracts/modules/dispute/policies/UMA/ArbitrationPolicyUMA.sol

+3-3
Original file line numberDiff line numberDiff line change
@@ -327,11 +327,11 @@ contract ArbitrationPolicyUMA is
327327
"IP dispute ",
328328
BytesConversion.toUtf8BytesUint(disputeId),
329329
'", "description": "',
330-
"The IP with ipId address ",
330+
"The IP with ipId address 0x",
331331
BytesConversion.toUtf8BytesAddress(targetIpId),
332-
" is infringing beyond any reasonable doubt with dispute tag ",
332+
" is infringing beyond any reasonable doubt with dispute tag 0x",
333333
BytesConversion.toUtf8Bytes(targetTag),
334-
" given the evidence hash ",
334+
" given the evidence hash 0x",
335335
BytesConversion.toUtf8Bytes(disputeEvidenceHash),
336336
// solhint-disable-next-line max-line-length
337337
". This dispute is original and not a duplicate of a previous dispute that has been raised against the same IP.",

test/foundry/modules/dispute/policies/UMA/ArbitrationPolicyUMA.t.sol

+4-7
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,7 @@ contract ArbitrationPolicyUMATest is BaseTest {
9393

9494
// upgrade dispute module
9595
address newDisputeModuleImpl = address(
96-
new DisputeModule(
97-
accessController,
98-
ipAssetRegistry,
99-
licenseRegistry,
100-
ipGraphACL
101-
)
96+
new DisputeModule(accessController, ipAssetRegistry, licenseRegistry, ipGraphACL)
10297
);
10398
vm.startPrank(upgrader);
10499
AccessManager(accessManager).schedule(
@@ -110,7 +105,9 @@ contract ArbitrationPolicyUMATest is BaseTest {
110105
UUPSUpgradeable(disputeModule).upgradeToAndCall(newDisputeModuleImpl, "");
111106

112107
// upgrade arbitration policy UMA
113-
address newArbitrationPolicyUMAImpl = address(new ArbitrationPolicyUMA(address(disputeModule), address(royaltyModule)));
108+
address newArbitrationPolicyUMAImpl = address(
109+
new ArbitrationPolicyUMA(address(disputeModule), address(royaltyModule))
110+
);
114111
AccessManager(accessManager).schedule(
115112
address(arbitrationPolicyUMA),
116113
abi.encodeCall(UUPSUpgradeable.upgradeToAndCall, (newArbitrationPolicyUMAImpl, "")),

0 commit comments

Comments
 (0)