Skip to content

Commit

Permalink
sbft: only send next batch once previous is done
Browse files Browse the repository at this point in the history
Change-Id: I3e3bd029c6190813dfef0efcbfa39d36dff95b01
Signed-off-by: Simon Schubert <sis@zurich.ibm.com>
  • Loading branch information
corecode authored and Simon Schubert committed Nov 21, 2016
1 parent c163c86 commit 1fd9f62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orderer/sbft/simplebft/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func (s *SBFT) maybeSendNextBatch() {
return
}

if !s.cur.executed {
if !s.cur.checkpointDone {
return
}

Expand Down

0 comments on commit 1fd9f62

Please sign in to comment.