Skip to content

Commit 0f17350

Browse files
committed
Fix unit tests
1 parent 34ba19c commit 0f17350

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/mock/SPVContractMock.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ contract SPVContractMock is SPVContract {
1919

2020
function getStorageMedianTime(
2121
bytes calldata blockHeaderRaw_,
22-
uint256 blockHeight_
22+
uint64 blockHeight_
2323
) external view returns (uint32) {
2424
(BlockHeaderData memory blockHeader_, ) = blockHeaderRaw_.parseBlockHeaderData();
2525

@@ -28,7 +28,7 @@ contract SPVContractMock is SPVContract {
2828

2929
function getMemoryMedianTime(
3030
bytes[] calldata blockHeaderRawArr_,
31-
uint256 to_
31+
uint64 to_
3232
) external pure returns (uint32) {
3333
BlockHeaderData[] memory blockHeaders_ = new BlockHeaderData[](blockHeaderRawArr_.length);
3434

0 commit comments

Comments
 (0)