fix: default mqtt port

- since MqttTLS is set to true by default we need to use the mqtts port
  as well.

  panic: network Error : EOF

Signed-off-by: Julian Strobl <jmastr@mailbox.org>
This commit is contained in:
Julian Strobl 2024-04-25 13:26:14 +02:00
parent c2f887a1ef
commit b29d67e420
No known key found for this signature in database
GPG Key ID: E0A8F9AD733499A7

View File

@ -61,7 +61,7 @@ func DefaultConfig() *Config {
RPCWallet: "rpcwallet",
ValidatorAddress: "plmnt1w5dww335zhh98pzv783hqre355ck3u4w4hjxcx",
MqttDomain: "testnet-mqtt.rddl.io",
MqttPort: 1885,
MqttPort: 1886,
MqttUser: "user",
MqttPassword: "password",
MqttTLS: true,