aboutsummaryrefslogtreecommitdiff
path: root/src/script.cpp
diff options
context:
space:
mode:
authorJeff Garzik <[email protected]>2012-04-15 11:39:15 -0700
committerJeff Garzik <[email protected]>2012-04-15 11:39:15 -0700
commit5a701eb7ea16b87b56263996ee8e98ec89e2a3d8 (patch)
treefe8a60dc3eeb26e62cf4531a98b29ed99bee90e9 /src/script.cpp
parentMerge pull request #1084 from dooglus/validate_secret (diff)
parentfix warnings: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] (diff)
downloaddiscoin-5a701eb7ea16b87b56263996ee8e98ec89e2a3d8.tar.xz
discoin-5a701eb7ea16b87b56263996ee8e98ec89e2a3d8.zip
Merge pull request #1104 from laanwj/2012_04_clang
Enable and fix most compilation warnings
Diffstat (limited to 'src/script.cpp')
-rw-r--r--src/script.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/script.cpp b/src/script.cpp
index b6f120289..21f101e1c 100644
--- a/src/script.cpp
+++ b/src/script.cpp
@@ -1443,7 +1443,6 @@ bool ExtractAddresses(const CScript& scriptPubKey, txnouttype& typeRet, vector<C
if (typeRet == TX_MULTISIG)
{
nRequiredRet = vSolutions.front()[0];
- int n = vSolutions.back()[0];
for (int i = 1; i < vSolutions.size()-1; i++)
{
CBitcoinAddress address;