Skip to content

Commit

Permalink
fix promotion rewards by encoding timestamp as seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
bbalser committed Oct 30, 2024
1 parent 04673f4 commit a0148bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile_config/src/client/carrier_service_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ impl CarrierServiceVerifier for CarrierServiceClient {
&self,
) -> Result<Vec<ServiceProviderPromotions>, Self::Error> {
let mut request = mobile_config::CarrierIncentivePromotionListReqV1 {
timestamp: Utc::now().encode_timestamp_millis(),
timestamp: Utc::now().encode_timestamp(),
signer: self.signing_key.public_key().into(),
signature: vec![],
};
Expand Down

0 comments on commit a0148bf

Please sign in to comment.