dymensionxyz / go-relayer

An IBC relayer for ibc-go
Apache License 2.0
4 stars 6 forks source link

fix: allow relaying based on first block #18

Closed danwt closed 6 months ago

danwt commented 6 months ago

Old behavior:

The chain processor will only send block info to the path processor if the block is a 'new' block. It has the assumption that new blocks come frequently, so it does not consider the first block (highest at start time) a new block.

New behavior:

The chain processor will only send block info to the path processor if the block is a 'new' block. The first block is considered a new block.

Extra:

danwt commented 6 months ago

I just pushed a simplification and I think I regressed it, gonna fix