Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ferranbt committed Feb 5, 2024
1 parent 7e4551b commit 30ca2a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions suave/sol/standard_peekers/bundles.sol
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ contract EthBlockContract is AnyBundleContract {
uint64 blockHeight,
Suave.DataId[] memory records,
string memory namespace
) public view returns (Suave.DataRecord memory, bytes memory) {
) public returns (Suave.DataRecord memory, bytes memory) {
address[] memory allowedPeekers = new address[](2);
allowedPeekers[0] = address(this);
allowedPeekers[1] = Suave.BUILD_ETH_BLOCK;
Expand All @@ -331,7 +331,7 @@ contract EthBlockContract is AnyBundleContract {
return (dataRecord, builderBid);
}

function unlock(Suave.DataId dataId, bytes memory signedBlindedHeader) public view returns (bytes memory) {
function unlock(Suave.DataId dataId, bytes memory signedBlindedHeader) public returns (bytes memory) {
require(Suave.isConfidential());

// TODO: verify the header is correct
Expand Down

0 comments on commit 30ca2a8

Please sign in to comment.