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

Commit

Permalink
tmp fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marcio-diaz committed Apr 24, 2019
1 parent 1e871d1 commit bfb2fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/finality-grandpa/src/observer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ fn grandpa_observer<B, E, Block: BlockT<Hash=H256>, RA, S>(

// if the commit we've received targets a block lower than the last
// finalized, ignore it and continue with the current state
if commit.target_number < last_finalized_number {
if commit.target_number <= last_finalized_number {
return future::ok(last_finalized_number);
}

Expand Down

0 comments on commit bfb2fba

Please sign in to comment.