Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Rootul P <rootulp@gmail.com>
  • Loading branch information
cmwaters and rootulp committed Apr 19, 2024
1 parent 0c4666e commit df3328b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion consensus/byzantine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ func TestByzantineConflictingProposalsWithPartition(t *testing.T) {
case <-tick.C:
for i := range reactors {
t.Logf(fmt.Sprintf("Consensus Reactor %v", i))
t.Logf(fmt.Sprintf("%v", css[i].GetRoundState()))
t.Logf(fmt.Sprintf("round state: %v", css[i].GetRoundState()))
}
t.Fatalf("Timed out waiting for all validators to commit first block")
}
Expand Down
2 changes: 1 addition & 1 deletion state/execution.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ func (blockExec *BlockExecutor) ProcessProposal(

// Similar to PrepareProposal, the last transaction provided to Celestia
// in ProcessProposal is the data hash. The data hash needs to be passed to
// the application so that is can be verified against the nodes own construction
// the application so that it can be verified against the nodes own construction
// of the data square
txs := append(block.Data.Txs.ToSliceOfBytes(), block.DataHash)

Expand Down

0 comments on commit df3328b

Please sign in to comment.