Skip to content

Commit

Permalink
Merge pull request #30 from heejin-github/patch
Browse files Browse the repository at this point in the history
Fix default rpcAddr
  • Loading branch information
kim201212 authored Mar 28, 2023
2 parents be5b1cd + 19b4c0f commit a4a571b
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 a4a571b

Please sign in to comment.