Skip to content

Commit

Permalink
squashme
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaytonNorthey92 committed Jun 10, 2024
1 parent 9e5649e commit 6a45c8c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/localnet-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ jobs:
- name: "Download and verify dependencies"
run: make deps


- name: "run localnet"
run: docker compose -f ./e2e/docker-compose.yml up -d

Expand Down
2 changes: 1 addition & 1 deletion service/tbc/peer.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func (p *peer) connect(ctx context.Context) error {
}

log.Debugf("dialing %s", p.address)
conn, err := d.DialContext(ctx, "tcp", "78.141.246.166:18333")
conn, err := d.DialContext(ctx, "tcp", p.address)
if err != nil {
return fmt.Errorf("dial %v: %w", p.address, err)
}
Expand Down

0 comments on commit 6a45c8c

Please sign in to comment.