Skip to content

Commit

Permalink
Fix svm auction loop (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
danimhr authored Sep 25, 2024
1 parent 34d5900 commit d62ef7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auction-server/src/auction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1488,7 +1488,7 @@ async fn run_submission_loop<T: ChainStore>(
}
models::ChainType::Svm => {
if let Some(chain_store) = store
.chains
.chains_svm
.get(&chain_id) {
submit_auctions(store.clone(), chain_store, chain_id).await
}
Expand All @@ -1510,7 +1510,7 @@ async fn run_submission_loop<T: ChainStore>(
}
models::ChainType::Svm => {
if let Some(chain_store) = store
.chains
.chains_svm
.get(&chain_id) {
conclude_submitted_auctions(store.clone(), chain_store, chain_id.clone()).await
}
Expand Down

0 comments on commit d62ef7c

Please sign in to comment.