Skip to content

Commit

Permalink
fix: integration tests UnknownError
Browse files Browse the repository at this point in the history
  • Loading branch information
tamtamchik committed Dec 2, 2024
1 parent fe2b426 commit eb9c29e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/0.8.25/Accounting.sol
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ contract Accounting is VaultHub {
ReportValues memory _report,
PreReportState memory _pre,
CalculatedValues memory _update
) internal view {
) internal {
if (_report.timestamp >= block.timestamp) revert IncorrectReportTimestamp(_report.timestamp, block.timestamp);
if (_report.clValidators < _pre.clValidators || _report.clValidators > _pre.depositedValidators) {
revert IncorrectReportValidators(_report.clValidators, _pre.clValidators, _pre.depositedValidators);
Expand Down
2 changes: 1 addition & 1 deletion contracts/0.8.25/interfaces/IOracleReportSanityChecker.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ interface IOracleReportSanityChecker {
uint256 _sharesRequestedToBurn,
uint256 _preCLValidators,
uint256 _postCLValidators
) external view;
) external;

//
function checkWithdrawalQueueOracleReport(
Expand Down

0 comments on commit eb9c29e

Please sign in to comment.