Browse Source

Add several blacklist-by-default commands

These were all "hidden" commands that aren't returned by "help". See, for example: https://github.com/bitcoin/bitcoin/blob/master/src/rpc/blockchain.cpp#L2280

Fixes #151
fix-133-memory-crash
Dan Janosik 5 years ago
parent
commit
b81584a0f1
No known key found for this signature in database GPG Key ID: C6F8CE9FFDB2CED2
  1. 8
      app/config.js

8
app/config.js

@ -89,6 +89,7 @@ module.exports = {
"importprunedfunds",
"importpubkey",
"importwallet",
"invalidateblock",
"keypoolrefill",
"listaccounts",
"listaddressgroupings",
@ -104,6 +105,7 @@ module.exports = {
"move",
"preciousblock",
"pruneblockchain",
"reconsiderblock",
"removeprunedfunds",
"rescanblockchain",
"savemempool",
@ -113,13 +115,19 @@ module.exports = {
"sendrawtransaction",
"setaccount",
"setban",
"setmocktime",
"setnetworkactive",
"signmessage",
"signmessagewithprivatekey",
"signrawtransaction",
"signrawtransactionwithkey",
"stop",
"submitblock",
"syncwithvalidationinterfacequeue",
"verifychain",
"waitforblock",
"waitforblockheight",
"waitfornewblock",
"walletlock",
"walletpassphrase",
"walletpassphrasechange",

Loading…
Cancel
Save