diff options
| author | Jeff Garzik <[email protected]> | 2012-08-21 08:44:21 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2012-08-21 08:44:21 -0700 |
| commit | 5f2b41d54d2adbbbb951291cf8fdcef8a77a543d (patch) | |
| tree | e30c0ff27bac0fa07cb6a2cda320a76cb7e3bf0a /src/rpcrawtransaction.cpp | |
| parent | Merge pull request #1687 from gavinandresen/quietunit (diff) | |
| parent | RPC, cosmetic: move more RPC code to new rpcblockchain.cpp module (diff) | |
| download | discoin-5f2b41d54d2adbbbb951291cf8fdcef8a77a543d.tar.xz discoin-5f2b41d54d2adbbbb951291cf8fdcef8a77a543d.zip | |
Merge pull request #1693 from jgarzik/rpcwallet
Move code to new modules rpcwallet.cpp, rpcblockchain.cpp
Diffstat (limited to 'src/rpcrawtransaction.cpp')
| -rw-r--r-- | src/rpcrawtransaction.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp index b03745714..29b9d072d 100644 --- a/src/rpcrawtransaction.cpp +++ b/src/rpcrawtransaction.cpp @@ -18,13 +18,6 @@ using namespace boost; using namespace boost::assign; using namespace json_spirit; -// These are all in bitcoinrpc.cpp: -extern Object JSONRPCError(int code, const string& message); -extern int64 AmountFromValue(const Value& value); -extern Value ValueFromAmount(int64 amount); -extern std::string HelpRequiringPassphrase(); -extern void EnsureWalletIsUnlocked(); - void ScriptPubKeyToJSON(const CScript& scriptPubKey, Object& out) { |