Skip to content

Commit b605eae

Browse files
authored
rm unused constants (#211)
1 parent e8d3145 commit b605eae

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/Cids.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
pragma solidity ^0.8.20;
33

44
library Cids {
5-
uint256 public constant COMMP_LEAF_SIZE = 32;
65
// 0x01 0x55 0x9120
76
// (cidv1) (raw) (fr32-sha2-256-trunc254-padded-binary-tree)
87
bytes4 public constant COMMP_V2_PREFIX = hex"01559120";

src/PDPVerifier.sol

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,10 @@ uint256 constant NEW_DATA_SET_SENTINEL = 0;
4242
contract PDPVerifier is Initializable, UUPSUpgradeable, OwnableUpgradeable {
4343
// Constants
4444
address public constant BURN_ACTOR = 0xff00000000000000000000000000000000000063;
45-
uint256 public constant LEAF_SIZE = 32;
4645
uint256 public constant MAX_PIECE_SIZE_LOG2 = 50;
4746
uint256 public constant MAX_ENQUEUED_REMOVALS = 2000;
4847
address public constant RANDOMNESS_PRECOMPILE = 0xfE00000000000000000000000000000000000006;
4948
uint256 public constant EXTRA_DATA_MAX_SIZE = 2048;
50-
uint256 public constant SECONDS_IN_DAY = 86400;
5149
IPyth public constant PYTH = IPyth(0xA2aa501b19aff244D90cc15a4Cf739D2725B5729);
5250

5351
// FIL/USD price feed query ID on the Pyth network

0 commit comments

Comments
 (0)