Skip to content

Commit

Permalink
Fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
zale144 committed Aug 29, 2024
1 parent eee9efd commit f3f0083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion order_tracker.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const finalizedEvent = "dymensionxyz.dymension.eibc.EventDemandOrderPacketStatus

func (or *orderTracker) waitForFinalizedOrder(ctx context.Context) error {
// TODO: should filter by fulfiller (one of the bots)?
var query = fmt.Sprintf("%s.is_fulfilled='true' AND %s.new_packet_status='FINALIZED'", finalizedEvent, finalizedEvent)
query := fmt.Sprintf("%s.is_fulfilled='true' AND %s.new_packet_status='FINALIZED'", finalizedEvent, finalizedEvent)

resCh, err := or.client.RPC.Subscribe(ctx, or.subscriberID, query)
if err != nil {
Expand Down

0 comments on commit f3f0083

Please sign in to comment.