Skip to content

Commit

Permalink
Merge pull request #45 from lemois-1337/2024-fixes-karlsen-wallet
Browse files Browse the repository at this point in the history
Changed default listen port from 8082 to 9182
  • Loading branch information
lemois-1337 authored Mar 6, 2024
2 parents 77a5967 + 0d7b61a commit 713d2cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/karlsenwallet/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const (
)

const (
defaultListen = "localhost:8082"
defaultListen = "localhost:9182"
defaultRPCServer = "localhost"
)

Expand Down Expand Up @@ -116,7 +116,7 @@ type startDaemonConfig struct {
KeysFile string `long:"keys-file" short:"f" description:"Keys file location (default: ~/.karlsenwallet/keys.json (*nix), %USERPROFILE%\\AppData\\Local\\karlsenwallet\\key.json (Windows))"`
Password string `long:"password" short:"p" description:"Wallet password"`
RPCServer string `long:"rpcserver" short:"s" description:"RPC server to connect to"`
Listen string `long:"listen" short:"l" description:"Address to listen on (default: 0.0.0.0:8082)"`
Listen string `long:"listen" short:"l" description:"Address to listen on (default: 0.0.0.0:9182)"`
Timeout uint32 `long:"wait-timeout" short:"w" description:"Waiting timeout for RPC calls, seconds (default: 30 s)"`
Profile string `long:"profile" description:"Enable HTTP profiling on given port -- NOTE port must be between 1024 and 65536"`
config.NetworkFlags
Expand Down

0 comments on commit 713d2cc

Please sign in to comment.