File tree 3 files changed +188
-135
lines changed
bridges/centralized-ethereum/src/actors
3 files changed +188
-135
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ pub struct Report {
102
102
/// Data Request's unique query id as known by the WitnetOracle contract
103
103
pub dr_id : DrId ,
104
104
/// Timestamp at which the reported result was actually generated
105
- pub dr_timestamp : u64 ,
105
+ pub dr_timestamp : i64 ,
106
106
/// Hash of the Data Request Transaction in the Witnet blockchain
107
107
pub dr_tx_hash : Hash ,
108
108
/// Hash of the Data Request Tally Transaction in the Witnet blockchain
Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ impl DrSender {
189
189
190
190
dr_reporter_msgs. push ( Report {
191
191
dr_id,
192
- dr_timestamp : u64 :: from_ne_bytes ( get_timestamp ( ) . to_ne_bytes ( ) ) ,
192
+ dr_timestamp : i64 :: from_ne_bytes ( get_timestamp ( ) . to_ne_bytes ( ) ) ,
193
193
dr_tx_hash : zero_hash,
194
194
dr_tally_tx_hash : zero_hash,
195
195
result,
You can’t perform that action at this time.
0 commit comments