Skip to content

Commit 7975d94

Browse files
authored
Merge pull request #56 from AzothZephyr/fix-ws-port-conversion
fix building websockets url to support more use cases
2 parents 7d52607 + d6b2aab commit 7975d94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tuktuk-crank-turner/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ impl Cli {
102102
let solana_ws_url = solana_url
103103
.replace("http", "ws")
104104
.replace("https", "wss")
105-
.replace("127.0.0.1:8899", "127.0.0.1:8900");
105+
.replace("8899", "8900");
106106

107107
// Create a non-blocking RPC client
108108
// We can work off of processed accounts because we simulate the next tx before actually

0 commit comments

Comments
 (0)