Skip to content

Commit

Permalink
chore: add height to event
Browse files Browse the repository at this point in the history
  • Loading branch information
izyak committed Sep 1, 2023
1 parent f581195 commit c762b59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relayer/chains/wasm/wasm_chain_processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ func (ccp *WasmChainProcessor) queryCycle(ctx context.Context, persistence *quer
messages := ibcMessagesFromEvents(ccp.log, tx.Events, chainID, heightUint64, ccp.chainProvider.PCfg.IbcHandlerAddress, base64Encoded)

for _, m := range messages {
ccp.log.Info("Detected eventlog", zap.String("eventlog", m.eventType))
ccp.log.Info("Detected eventlog", zap.String("eventlog", m.eventType), zap.Uint64("height", heightUint64))

Check warning on line 471 in relayer/chains/wasm/wasm_chain_processor.go

View check run for this annotation

Codecov / codecov/patch

relayer/chains/wasm/wasm_chain_processor.go#L471

Added line #L471 was not covered by tests
ccp.handleMessage(ctx, m, ibcMessagesCache)
}
}
Expand Down

0 comments on commit c762b59

Please sign in to comment.