Skip to content

Commit

Permalink
Fix Timeout Handling on Relayer start (#506)
Browse files Browse the repository at this point in the history
* swap src dst

* CHANGELOG
  • Loading branch information
AdityaSripal authored May 10, 2021
1 parent afca79b commit 9eede44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* [\#468](https://github.com/cosmos/relayer/pull/468) cli: UX cleanup for query commands
* [\#467](https://github.com/cosmos/relayer/pull/467) cli: UX cleanup for tx commands
* [\#466](https://github.com/cosmos/relayer/pull/466) Docs cleanup.
* [\#506](https://github.com/cosmos/relayer/pull/506) Fix Timeout Handling on Relayer restart

## v0.9.3

Expand Down
2 changes: 1 addition & 1 deletion relayer/naive-strategy.go
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ func relayPacketsFromResultTx(src, dst *Chain, res *ctypes.ResultTx) ([]relayPac
}

// fetch the header which represents a block produced on destination
block, err := src.GetIBCUpdateHeader(dst)
block, err := dst.GetIBCUpdateHeader(src)
if err != nil {
return nil, nil, err
}
Expand Down

0 comments on commit 9eede44

Please sign in to comment.