Skip to content
Open
Changes from all commits
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
2 changes: 1 addition & 1 deletion abci/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ func (app *ForumApp) PrepareProposal(_ context.Context, req *abci.PrepareProposa
if err != nil {
fmt.Println("failed to parse message in PrepareProposal")
} else {
// If the user is banned then include this transaction in the final proposal
// If the user is not banned then include this transaction in the final proposal
if _, ok := bannedUsersString[msg.Sender]; !ok {
finalProposal = append(finalProposal, tx)
}
Expand Down