Skip to content
Merged
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
clippy
  • Loading branch information
liamaharon committed Apr 29, 2024
commit 0f37bde832231c6d4101b4377db721b0e15014f8
2 changes: 1 addition & 1 deletion core/src/commands/execute_block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ where
let live_state = match command.state {
State::Live(live_state) => {
// If no --at is provided, get the latest block to replay
if let Some(_) = live_state.at {
if live_state.at.is_some() {
live_state
} else {
let header =
Expand Down