Skip to content

Commit

Permalink
Fix default rpcAddr
Browse files Browse the repository at this point in the history
  • Loading branch information
heejin-github committed Mar 27, 2023
1 parent be5b1cd commit 19b4c0f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/node_peer_count/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ import (

const (
// Default values.
defaultAddr = "127.0.0.1"
defaultPort = 9091
defaultPeer = 5
defaultRpcAddr = "https://localhost:26657"
defaultAddr = "127.0.0.1"
defaultPort = 9091
defaultPeer = 5
defaultRpcAddr = "http://localhost:26657"

pluginName = "cosmoshub-peer-count"
)
Expand Down

0 comments on commit 19b4c0f

Please sign in to comment.