Add fundrawtransaction RPC method

This commit is contained in:
Matt Corallo
2015-04-24 18:27:30 -07:00
committed by Jack Grigg
parent aa30f65502
commit 3d8013a01b
5 changed files with 65 additions and 0 deletions

View File

@@ -332,6 +332,9 @@ static const CRPCCommand vRPCCommands[] =
{ "rawtransactions", "getrawtransaction", &getrawtransaction, true },
{ "rawtransactions", "sendrawtransaction", &sendrawtransaction, false },
{ "rawtransactions", "signrawtransaction", &signrawtransaction, false }, /* uses wallet if enabled */
#ifdef ENABLE_WALLET
{ "rawtransactions", "fundrawtransaction", &fundrawtransaction, false },
#endif
/* Utility functions */
{ "util", "createmultisig", &createmultisig, true },