Skip to content

Commit f0a369f

Browse files
submission timestamp checks improvement
1 parent da17d9d commit f0a369f

File tree

1 file changed

+7
-10
lines changed
  • contracts/price-aggregator/src

1 file changed

+7
-10
lines changed

contracts/price-aggregator/src/lib.rs

+7-10
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,6 @@ pub trait PriceAggregator:
168168
let current_timestamp = self.blockchain().get_block_timestamp();
169169
let mut is_first_submission = false;
170170
let mut first_submission_timestamp = if submissions.is_empty() {
171-
self.require_valid_first_submission(submission_timestamp, current_timestamp);
172-
173171
first_sub_time_mapper.set(current_timestamp);
174172
is_first_submission = true;
175173

@@ -180,8 +178,6 @@ pub trait PriceAggregator:
180178

181179
// round was not completed in time, so it's discarded
182180
if current_timestamp > first_submission_timestamp + MAX_ROUND_DURATION_SECONDS {
183-
self.require_valid_first_submission(submission_timestamp, current_timestamp);
184-
185181
submissions.clear();
186182
first_sub_time_mapper.set(current_timestamp);
187183
last_sub_time_mapper.set(current_timestamp);
@@ -194,7 +190,7 @@ pub trait PriceAggregator:
194190
let caller = self.blockchain().get_caller();
195191
let has_caller_already_submitted = submissions.contains_key(&caller);
196192
let accepted = !has_caller_already_submitted
197-
&& (is_first_submission || submission_timestamp >= first_submission_timestamp);
193+
&& (is_first_submission || current_timestamp >= first_submission_timestamp);
198194
if accepted {
199195
submissions.insert(caller.clone(), price.clone());
200196
last_sub_time_mapper.set(current_timestamp);
@@ -224,7 +220,11 @@ pub trait PriceAggregator:
224220
});
225221
}
226222

227-
fn require_valid_first_submission(&self, submission_timestamp: u64, current_timestamp: u64) {
223+
fn require_valid_submission_timestamp(&self, submission_timestamp: u64, current_timestamp: u64) {
224+
require!(
225+
submission_timestamp <= current_timestamp,
226+
"Timestamp is from the future"
227+
);
228228
require!(
229229
current_timestamp - submission_timestamp <= FIRST_SUBMISSION_TIMESTAMP_MAX_DIFF_SECONDS,
230230
"First submission too old"
@@ -244,10 +244,7 @@ pub trait PriceAggregator:
244244
.into_iter()
245245
.map(|submission| submission.into_tuple())
246246
{
247-
require!(
248-
submission_timestamp <= current_timestamp,
249-
"Timestamp is from the future"
250-
);
247+
self.require_valid_submission_timestamp(submission_timestamp, current_timestamp);
251248

252249
self.check_decimals(&from, &to, decimals);
253250

0 commit comments

Comments
 (0)