We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34ba19c commit 0f17350Copy full SHA for 0f17350
contracts/mock/SPVContractMock.sol
@@ -19,7 +19,7 @@ contract SPVContractMock is SPVContract {
19
20
function getStorageMedianTime(
21
bytes calldata blockHeaderRaw_,
22
- uint256 blockHeight_
+ uint64 blockHeight_
23
) external view returns (uint32) {
24
(BlockHeaderData memory blockHeader_, ) = blockHeaderRaw_.parseBlockHeaderData();
25
@@ -28,7 +28,7 @@ contract SPVContractMock is SPVContract {
28
29
function getMemoryMedianTime(
30
bytes[] calldata blockHeaderRawArr_,
31
- uint256 to_
+ uint64 to_
32
) external pure returns (uint32) {
33
BlockHeaderData[] memory blockHeaders_ = new BlockHeaderData[](blockHeaderRawArr_.length);
34
0 commit comments