diff options
| author | Giel van Schijndel <[email protected]> | 2011-06-24 22:00:59 +0200 |
|---|---|---|
| committer | Giel van Schijndel <[email protected]> | 2011-07-13 05:10:15 +0200 |
| commit | 858cebed7dee2e9801e754a9969844b7969254ee (patch) | |
| tree | ad12ee913c13750c880a6bd04508cc25be8f8545 /src/rpc.cpp | |
| parent | fix warning: X enumeration values not handled in switch [-Wswitch-enum] (diff) | |
| download | discoin-858cebed7dee2e9801e754a9969844b7969254ee.tar.xz discoin-858cebed7dee2e9801e754a9969844b7969254ee.zip | |
fix warning: unused variable 'X' [-Wunused-variable]
Remove several unused variables.
Signed-off-by: Giel van Schijndel <[email protected]>
Diffstat (limited to 'src/rpc.cpp')
| -rw-r--r-- | src/rpc.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/rpc.cpp b/src/rpc.cpp index e71c5bcb4..4016d265c 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -2419,7 +2419,6 @@ int CommandLineRPC(int argc, char *argv[]) // Parse reply const Value& result = find_value(reply, "result"); const Value& error = find_value(reply, "error"); - const Value& id = find_value(reply, "id"); if (error.type() != null_type) { |