Skip to content

Commit f20e8d3

Browse files
committed
deleted unused event
1 parent aa98bb9 commit f20e8d3

File tree

2 files changed

+67
-5
lines changed

2 files changed

+67
-5
lines changed

abis/Client.json

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,19 @@
6969
],
7070
"stateMutability": "view"
7171
},
72+
{
73+
"type": "function",
74+
"name": "claimsTerminatedEarly",
75+
"inputs": [
76+
{
77+
"name": "claims",
78+
"type": "uint64[]",
79+
"internalType": "uint64[]"
80+
}
81+
],
82+
"outputs": [],
83+
"stateMutability": "nonpayable"
84+
},
7285
{
7386
"type": "function",
7487
"name": "getClientAllocationIdsPerDeal",
@@ -216,6 +229,25 @@
216229
"outputs": [],
217230
"stateMutability": "nonpayable"
218231
},
232+
{
233+
"type": "function",
234+
"name": "isDataSizeMatching",
235+
"inputs": [
236+
{
237+
"name": "dealId",
238+
"type": "uint256",
239+
"internalType": "uint256"
240+
}
241+
],
242+
"outputs": [
243+
{
244+
"name": "",
245+
"type": "bool",
246+
"internalType": "bool"
247+
}
248+
],
249+
"stateMutability": "nonpayable"
250+
},
219251
{
220252
"type": "function",
221253
"name": "proxiableUUID",
@@ -284,6 +316,25 @@
284316
],
285317
"stateMutability": "view"
286318
},
319+
{
320+
"type": "function",
321+
"name": "terminatedClaims",
322+
"inputs": [
323+
{
324+
"name": "claimId",
325+
"type": "uint64",
326+
"internalType": "uint64"
327+
}
328+
],
329+
"outputs": [
330+
{
331+
"name": "",
332+
"type": "bool",
333+
"internalType": "bool"
334+
}
335+
],
336+
"stateMutability": "view"
337+
},
287338
{
288339
"type": "function",
289340
"name": "transfer",
@@ -556,6 +607,22 @@
556607
}
557608
]
558609
},
610+
{
611+
"type": "error",
612+
"name": "DealAllocationNotFound",
613+
"inputs": [
614+
{
615+
"name": "dealId",
616+
"type": "uint256",
617+
"internalType": "uint256"
618+
},
619+
{
620+
"name": "allocationId",
621+
"type": "uint64",
622+
"internalType": "uint64"
623+
}
624+
]
625+
},
559626
{
560627
"type": "error",
561628
"name": "ERC1967InvalidImplementation",

src/Client.sol

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,6 @@ contract Client is Initializable, AccessControlUpgradeable, UUPSUpgradeable, Ree
152152
*/
153153
error InvalidDealStateForTransfer();
154154

155-
/**
156-
* @notice Error thrown when a deal allocation is not found
157-
*/
158-
error DealAllocationNotFound(uint256 dealId, uint64 allocationId);
159-
160155
struct Deal {
161156
address client;
162157
address validator;

0 commit comments

Comments
 (0)