Skip to content

Commit

Permalink
fix: restore original public functions
Browse files Browse the repository at this point in the history
  • Loading branch information
shaspitz committed Jul 22, 2024
1 parent b61bea8 commit 83283f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/contracts/PreConfCommitmentStore.sol
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ contract PreConfCommitmentStore is IPreConfCommitmentStore, Ownable2StepUpgradea
bytes calldata bidSignature,
bytes memory commitmentSignature,
bytes memory sharedSecretKey
) external returns (bytes32 commitmentIndex) {
) public returns (bytes32 commitmentIndex) {
require(decayStartTimeStamp < decayEndTimeStamp, "Invalid decay time");

(bytes32 bHash, address bidderAddress) = verifyBid(
Expand Down Expand Up @@ -313,7 +313,7 @@ contract PreConfCommitmentStore is IPreConfCommitmentStore, Ownable2StepUpgradea
bytes32 commitmentDigest,
bytes memory commitmentSignature,
uint64 dispatchTimestamp
) external returns (bytes32 commitmentIndex) {
) public returns (bytes32 commitmentIndex) {
// Calculate the minimum valid timestamp for dispatching the commitment
uint256 minTime = block.timestamp - commitmentDispatchWindow;
// Check if the dispatch timestamp is within the allowed dispatch window
Expand Down

0 comments on commit 83283f9

Please sign in to comment.