Skip to content

Commit

Permalink
Fixed Syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulSnow committed Sep 9, 2017
1 parent d137fd1 commit 533fa40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion state/stateConsensus.go
Expand Up @@ -639,7 +639,7 @@ func (s *State) FollowerExecuteDBState(msg interfaces.IMsg) {
}
}
// Only set the flag if we know the whole block is valid
for i, fct := range dbstatemsg.FactoidBlock.GetTransactions() {
for _, fct := range dbstatemsg.FactoidBlock.GetTransactions() {
s.FReplay.IsTSValid_(
constants.BLOCK_REPLAY,
fct.GetSigHash().Fixed(),
Expand Down

0 comments on commit 533fa40

Please sign in to comment.