Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: enable starting multiple tss processes with the same peer subset #331

Merged
merged 17 commits into from
Jul 17, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Set session ID to txHash to prevent mismatched messages
  • Loading branch information
mpetrun5 committed Jul 12, 2024
commit 9b09a990bdd0997269e0e76a9cd16d3fc7eb8acd
2 changes: 1 addition & 1 deletion chains/btc/executor/executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func (e *Executor) executeResourceProps(props []*BtcTransferProposal, resource c
i,
msg,
resource.Tweak,
fmt.Sprintf("%s-%d", sessionID, i),
fmt.Sprintf("%s-%s", sessionID, hex.EncodeToString(txHash)),
e.host,
e.comm,
e.fetcher)
Expand Down