Skip to content

Commit a969679

Browse files
committed
remove foundry.lock and update abi
1 parent d857a69 commit a969679

File tree

4 files changed

+3
-47
lines changed

4 files changed

+3
-47
lines changed

foundry.lock

Lines changed: 0 additions & 20 deletions
This file was deleted.

service_contracts/abi/FilecoinWarmStorageService.abi.json

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -401,30 +401,6 @@
401401
"outputs": [],
402402
"stateMutability": "nonpayable"
403403
},
404-
{
405-
"type": "function",
406-
"name": "isEpochProven",
407-
"inputs": [
408-
{
409-
"name": "dataSetId",
410-
"type": "uint256",
411-
"internalType": "uint256"
412-
},
413-
{
414-
"name": "epoch",
415-
"type": "uint256",
416-
"internalType": "uint256"
417-
}
418-
],
419-
"outputs": [
420-
{
421-
"name": "",
422-
"type": "bool",
423-
"internalType": "bool"
424-
}
425-
],
426-
"stateMutability": "view"
427-
},
428404
{
429405
"type": "function",
430406
"name": "migrate",

service_contracts/src/FilecoinWarmStorageService.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import {SignatureVerificationLib} from "./lib/SignatureVerificationLib.sol";
2323
uint256 constant NO_PROVING_DEADLINE = 0;
2424
uint256 constant BYTES_PER_LEAF = 32; // Each leaf is 32 bytes
2525
uint64 constant CHALLENGES_PER_PROOF = 5;
26-
uint256 constant COMMISSION_MAX_BPS = 10000; // 100% in basis points
26+
uint256 constant COMMISSION_MAX_BPS = 10000; // 100% in basis points
2727

2828
/// @title FilecoinWarmStorageService
2929
/// @notice An implementation of PDP Listener with payment integration.

service_contracts/test/FilecoinWarmStorageService.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ contract FilecoinWarmStorageServiceTest is MockFVMTest {
6060
// Test parameters
6161
bytes public extraData;
6262

63-
// Metadata size and count limits
63+
// Metadata size and count limits
6464
uint256 private constant MAX_KEY_LENGTH = 32;
6565
uint256 private constant MAX_VALUE_LENGTH = 128;
6666
uint256 private constant MAX_KEYS_PER_DATASET = 10;
@@ -128,7 +128,7 @@ contract FilecoinWarmStorageServiceTest is MockFVMTest {
128128
mockUSDFC = new MockERC20();
129129
mockPDPVerifier = new MockPDPVerifier();
130130

131-
// Deploy actual ServiceProviderRegistry
131+
// Deploy actual ServiceProviderRegistry
132132
ServiceProviderRegistry registryImpl = new ServiceProviderRegistry();
133133
bytes memory registryInitData = abi.encodeWithSelector(ServiceProviderRegistry.initialize.selector);
134134
MyERC1967Proxy registryProxy = new MyERC1967Proxy(address(registryImpl), registryInitData);

0 commit comments

Comments
 (0)