Skip to content

Commit

Permalink
Stop starting price generator for HST (#753)
Browse files Browse the repository at this point in the history
  • Loading branch information
bbalser authored Mar 5, 2024
1 parent ca76626 commit 4da166a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions price/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,16 +103,13 @@ impl Server {
.await?;
let iot_price_generator =
PriceGenerator::new(settings, BlockchainTokenTypeV1::Iot, price_sink.clone()).await?;
let hst_price_generator =
PriceGenerator::new(settings, BlockchainTokenTypeV1::Hst, price_sink).await?;

TaskManager::builder()
.add_task(file_upload_server)
.add_task(price_sink_server)
.add_task(hnt_price_generator)
.add_task(mobile_price_generator)
.add_task(iot_price_generator)
.add_task(hst_price_generator)
.start()
.await
}
Expand Down

0 comments on commit 4da166a

Please sign in to comment.