Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Resolve discussions
  • Loading branch information
s0me0ne-unkn0wn committed Aug 30, 2023
commit cf5885960fa675b82c38d47185145f47817e2518
1 change: 0 additions & 1 deletion polkadot/node/core/approval-voting/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1008,7 +1008,6 @@ async fn handle_actions<Context>(
},
None => {
let ctx = &mut *ctx;
// FIXME: Should we request at `block_hash` or `relay_block_hash`?
let executor_params = match session_info_provider
.get_session_info_by_index(ctx.sender(), block_hash, session)
.await
Expand Down
3 changes: 1 addition & 2 deletions polkadot/node/core/backing/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -630,8 +630,7 @@ async fn validate_and_make_available(

let executor_params = match executor_params_at_relay_parent(relay_parent, &mut sender).await {
Ok(ep) => ep,
Err(e) => return Err(Error::UtilError(e)), /* FIXME: Is it enough to just proparate
* `UtilError` here? */
Err(e) => return Err(Error::UtilError(e)),
};

let pov = match pov {
Expand Down