Skip to content

Commit

Permalink
fix: update based on feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-bisonai committed May 20, 2024
1 parent 3a83231 commit d5fc1ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/v0.2/src/SubmissionProxy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -383,8 +383,8 @@ contract SubmissionProxy is Ownable {
bytes32 message_ = keccak256(abi.encodePacked(_answers[i], _timestamps[i], _feedHashes[i]));
if (validateProof(_feedHashes[i], message_, proofs_)) {
feeds[_feedHashes[i]].submit(_answers[i]);
lastSubmissionTimes[_feedHashes[i]] = _timestamps[i];
}
lastSubmissionTimes[_feedHashes[i]] = _timestamps[i];
}
}

Expand Down

0 comments on commit d5fc1ed

Please sign in to comment.