@@ -168,8 +168,6 @@ pub trait PriceAggregator:
168
168
let current_timestamp = self . blockchain ( ) . get_block_timestamp ( ) ;
169
169
let mut is_first_submission = false ;
170
170
let mut first_submission_timestamp = if submissions. is_empty ( ) {
171
- self . require_valid_first_submission ( submission_timestamp, current_timestamp) ;
172
-
173
171
first_sub_time_mapper. set ( current_timestamp) ;
174
172
is_first_submission = true ;
175
173
@@ -180,8 +178,6 @@ pub trait PriceAggregator:
180
178
181
179
// round was not completed in time, so it's discarded
182
180
if current_timestamp > first_submission_timestamp + MAX_ROUND_DURATION_SECONDS {
183
- self . require_valid_first_submission ( submission_timestamp, current_timestamp) ;
184
-
185
181
submissions. clear ( ) ;
186
182
first_sub_time_mapper. set ( current_timestamp) ;
187
183
last_sub_time_mapper. set ( current_timestamp) ;
@@ -194,7 +190,7 @@ pub trait PriceAggregator:
194
190
let caller = self . blockchain ( ) . get_caller ( ) ;
195
191
let has_caller_already_submitted = submissions. contains_key ( & caller) ;
196
192
let accepted = !has_caller_already_submitted
197
- && ( is_first_submission || submission_timestamp >= first_submission_timestamp) ;
193
+ && ( is_first_submission || current_timestamp >= first_submission_timestamp) ;
198
194
if accepted {
199
195
submissions. insert ( caller. clone ( ) , price. clone ( ) ) ;
200
196
last_sub_time_mapper. set ( current_timestamp) ;
@@ -224,7 +220,11 @@ pub trait PriceAggregator:
224
220
} ) ;
225
221
}
226
222
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
+ ) ;
228
228
require ! (
229
229
current_timestamp - submission_timestamp <= FIRST_SUBMISSION_TIMESTAMP_MAX_DIFF_SECONDS ,
230
230
"First submission too old"
@@ -244,10 +244,7 @@ pub trait PriceAggregator:
244
244
. into_iter ( )
245
245
. map ( |submission| submission. into_tuple ( ) )
246
246
{
247
- require ! (
248
- submission_timestamp <= current_timestamp,
249
- "Timestamp is from the future"
250
- ) ;
247
+ self . require_valid_submission_timestamp ( submission_timestamp, current_timestamp) ;
251
248
252
249
self . check_decimals ( & from, & to, decimals) ;
253
250
0 commit comments