Skip to content

Commit

Permalink
lol
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenButtolph committed Dec 11, 2023
1 parent 81662ca commit 1e1e063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vms/platformvm/txs/mempool/mempool.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ func (m *mempool) RequestBuildBlock(emptyBlockPermitted bool) {
zap.Bool("emptyBlockPermitted", emptyBlockPermitted),
zap.Int("mempoolSize", m.unissuedTxs.Len()),
)
if !emptyBlockPermitted && m.unissuedTxs.Len() != 0 {
if !emptyBlockPermitted && m.unissuedTxs.Len() == 0 {
return
}

Expand Down

0 comments on commit 1e1e063

Please sign in to comment.