Skip to content

Commit fdcfe15

Browse files
committed
fix: change wss_url to wss_urls
1 parent 2abba81 commit fdcfe15

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

config/config.sample.pythnet.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ rpc_urls = ["https://api2.pythnet.pyth.network"]
1010

1111
# WS(S) endpoint of the RRC node. This is used to subscribe to account changes on the network.
1212
# This can be omitted when oracle.subscriber_enabled is set to false.
13-
wss_url = "wss://api2.pythnet.pyth.network"
13+
wss_urls = ["wss://api2.pythnet.pyth.network"]
1414

1515
# Path to your publishing keypair.
1616
key_store.publish_keypair_path = "/path/to/keypair.json"

config/config.sample.pythtest.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ rpc_urls = ["https://api.pythtest.pyth.network"]
1010
# WS(S) endpoint of the RRC node. This is used to subscribe to account changes
1111
# on the network. This can be omitted when oracle.subscriber_enabled is set to
1212
# false.
13-
wss_url = "wss://api.pythtest.pyth.network"
13+
wss_urls = ["wss://api.pythtest.pyth.network"]
1414

1515
# Path to your publishing keypair.
1616
key_store.publish_keypair_path = "/path/to/keypair.json"

config/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ rpc_urls = ["https://api.pythtest.pyth.network"]
3737

3838
# WS(S) endpoint of the RRC node. This is used to subscribe to account changes on the network.
3939
# This can be omitted when oracle.subscriber_enabled is set to false.
40-
wss_url = "wss://api.pythtest.pyth.network"
40+
wss_urls = ["wss://api.pythtest.pyth.network"]
4141

4242
# Path to the keypair used to publish price updates. If set to a
4343
# non-existent file path, the system expects a keypair to be loaded

0 commit comments

Comments
 (0)