Fix getpeers -> getconnectioncount in cli (#5052)

This commit is contained in:
Chris Stewart 2023-04-21 05:47:47 -05:00 committed by GitHub
parent 18482c7e44
commit d1c9228361
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2197,7 +2197,7 @@ object ConsoleCli {
// besthash
case GetBestBlockHash => RequestParam("getbestblockhash")
// peers
case GetConnectionCount => RequestParam("getpeers")
case GetConnectionCount => RequestParam("getconnectioncount")
case Stop => RequestParam("stop")
case SendRawTransaction(tx) =>
RequestParam("sendrawtransaction", Seq(up.writeJs(tx)))