diff options
| author | MarcoFalke <[email protected]> | 2016-08-25 10:59:45 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-08-25 11:00:21 +0200 |
| commit | 95a983d56dbda457e3bf8766d59bac74c7aa5699 (patch) | |
| tree | cb1d997046e114bf2b8416d53586d4603b130242 /src/test/rpc_tests.cpp | |
| parent | Merge #8282: net: Feeler connections to increase online addrs in the tried ta... (diff) | |
| parent | [test] Remove unused code (diff) | |
| download | discoin-95a983d56dbda457e3bf8766d59bac74c7aa5699.tar.xz discoin-95a983d56dbda457e3bf8766d59bac74c7aa5699.zip | |
Merge #8578: [test] Remove unused code
fa1cf9e [test] Remove unused code (MarcoFalke)
Diffstat (limited to 'src/test/rpc_tests.cpp')
| -rw-r--r-- | src/test/rpc_tests.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/rpc_tests.cpp b/src/test/rpc_tests.cpp index bbda6a48f..a15915aad 100644 --- a/src/test/rpc_tests.cpp +++ b/src/test/rpc_tests.cpp @@ -18,18 +18,6 @@ using namespace std; -UniValue -createArgs(int nRequired, const char* address1=NULL, const char* address2=NULL) -{ - UniValue result(UniValue::VARR); - result.push_back(nRequired); - UniValue addresses(UniValue::VARR); - if (address1) addresses.push_back(address1); - if (address2) addresses.push_back(address2); - result.push_back(addresses); - return result; -} - UniValue CallRPC(string args) { vector<string> vArgs; |