You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like we have a problem with the connection retries -
When connecting to a node, we try various addresses. On the first address, the node expected public key is being added to pendingOutgoingConnections. if connection fails, it should be removed from there, but the current code is doing it only if handshake has completed. If not, we don't have the public key, but we should use the expected one instead.
The text was updated successfully, but these errors were encountered:
If a peer got disconnected from us post-handshake due to stalling or
without specifying any reason, reconnect to him if we have a listening
address for him.
Closes#616. Closes#698.
This adds an optional `include_taker` flag to the `SubscribeSwaps` rpc
call to include taker swaps resulting from `ExecuteSwap` or
`PlaceOrder`. When this flag is enabled, swap results will be
transmitted both in the response of the `ExecuteSwap` or `PlaceOrder`
call as well as via the `SubscribeSwaps` stream.
Closes#698.
Looks like we have a problem with the connection retries -
When connecting to a node, we try various addresses. On the first address, the node expected public key is being added to
pendingOutgoingConnections
. if connection fails, it should be removed from there, but the current code is doing it only if handshake has completed. If not, we don't have the public key, but we should use the expected one instead.The text was updated successfully, but these errors were encountered: