Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Revert "minor chore changes (#3944)"
Browse files Browse the repository at this point in the history
This reverts commit 1d05f77.
  • Loading branch information
ordian committed Sep 29, 2021
1 parent c741b2b commit 02a1ecf
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 12 deletions.
37 changes: 27 additions & 10 deletions node/core/dispute-coordinator/src/real/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ async fn handle_incoming(
statements,
pending_confirmation,
} => {
let outcome = handle_import_statements(
handle_import_statements(
ctx,
overlay_db,
state,
Expand All @@ -531,10 +531,10 @@ async fn handle_incoming(
session,
statements,
now,
pending_confirmation,
metrics,
)
.await?;
pending_confirmation.send(outcome).map_err(|_| Error::OneshotSend)?;
},
DisputeCoordinatorMessage::RecentDisputes(rx) => {
let recent_disputes = overlay_db.load_recent_disputes()?.unwrap_or_default();
Expand Down Expand Up @@ -633,10 +633,14 @@ async fn handle_import_statements(
now: Timestamp,
pending_confirmation: oneshot::Sender<ImportStatementsResult>,
metrics: &Metrics,
) -> Result<ImportStatementsResult, Error> {
) -> Result<(), Error> {
if state.highest_session.map_or(true, |h| session + DISPUTE_WINDOW < h) {
// It is not valid to participate in an ancient dispute (spam?).
return Ok(ImportStatementsResult::InvalidImport)
pending_confirmation
.send(ImportStatementsResult::InvalidImport)
.map_err(|_| Error::OneshotSend)?;

return Ok(())
}

let validators = match state.rolling_session_window.session_info(session) {
Expand All @@ -647,7 +651,11 @@ async fn handle_import_statements(
"Missing info for session which has an active dispute",
);

return Ok(ImportStatementsResult::InvalidImport)
pending_confirmation
.send(ImportStatementsResult::InvalidImport)
.map_err(|_| Error::OneshotSend)?;

return Ok(())
},
Some(info) => info.validators.clone(),
};
Expand Down Expand Up @@ -772,12 +780,15 @@ async fn handle_import_statements(
//
// We expect that if the candidate is truly disputed that the higher-level network
// code will retry.
pending_confirmation
.send(ImportStatementsResult::InvalidImport)
.map_err(|_| Error::OneshotSend)?;

tracing::debug!(
target: LOG_TARGET,
"Recovering availability failed - invalid import."
);
return Ok(ImportStatementsResult::InvalidImport)
return Ok(())
}
metrics.on_open();

Expand All @@ -795,7 +806,11 @@ async fn handle_import_statements(

overlay_db.write_candidate_votes(session, candidate_hash, votes.into());

Ok(ImportStatementsResult::ValidImport)
pending_confirmation
.send(ImportStatementsResult::ValidImport)
.map_err(|_| Error::OneshotSend)?;

Ok(())
}

fn find_controlled_validator_indices(
Expand Down Expand Up @@ -902,7 +917,8 @@ async fn issue_local_statement(

// Do import
if !statements.is_empty() {
match handle_import_statements(
let (pending_confirmation, rx) = oneshot::channel();
handle_import_statements(
ctx,
overlay_db,
state,
Expand All @@ -911,10 +927,11 @@ async fn issue_local_statement(
session,
statements,
now,
pending_confirmation,
metrics,
)
.await?
{
.await?;
match rx.await {
Err(_) => {
tracing::error!(
target: LOG_TARGET,
Expand Down
2 changes: 0 additions & 2 deletions parachain/test-parachains/adder/collator/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# How to run this collator

First start two validators that will run for the relay chain:

```sh
cargo run --release -- -d alice --chain rococo-local --validator --alice --port 50551
cargo run --release -- -d bob --chain rococo-local --validator --bob --port 50552
```

Next start the collator that will collate for the adder parachain:

```sh
cargo run --release -p test-parachain-adder-collator -- --tmp --chain rococo-local --port 50553
```
Expand Down

0 comments on commit 02a1ecf

Please sign in to comment.