Skip to content

Commit

Permalink
fix go error
Browse files Browse the repository at this point in the history
  • Loading branch information
nibty committed Jan 26, 2024
1 parent 24d15d8 commit 92efc65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gossip/emitter/txs.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func (em *Emitter) addTxs(e *inter.MutableEventPayload, sorted *types.Transactio
// sort transactions by price and nonce
rules := em.world.GetRules()
for tx := sorted.Peek(); tx != nil; tx = sorted.Peek() {
sender, _ := types.Sender(em.world.TxSigner, tx)
//sender, _ := types.Sender(em.world.TxSigner, tx)
// check transaction epoch rules
if epochcheck.CheckTxs(types.Transactions{tx}, rules) != nil {
sorted.Pop()
Expand Down

0 comments on commit 92efc65

Please sign in to comment.