Skip to content

Commit

Permalink
temp fix for bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan committed Feb 15, 2014
1 parent ed36d37 commit 977aaa4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5194,7 +5194,7 @@ bool CDarkSendPool::AddOutput(CTxOut& newOutput){
}

bool CDarkSendPool::AddScriptSig(CScript& newSig, CTxIn& theVin, CScript& pubKey){
if(state == POOL_STATUS_SIGNING) {
//if(state == POOL_STATUS_SIGNING) {
BOOST_FOREACH(CScript s, vinSig)
if(s == newSig) return false;

Expand All @@ -5210,9 +5210,9 @@ bool CDarkSendPool::AddScriptSig(CScript& newSig, CTxIn& theVin, CScript& pubKey
return true;
}
}
} else {
printf("CDarkSendPool::AddScriptSig(): Dropped signature due to current state \n");
}
//} else {
// printf("CDarkSendPool::AddScriptSig(): Dropped signature due to current state \n");
//}
return false;
}

Expand Down
3 changes: 2 additions & 1 deletion src/makefile.unix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ LIBS = $(addprefix -L,$(BOOST_LIB_PATH) $(BDB_LIB_PATH) $(OPENSSL_LIB_PATH))

TESTDEFS = -DTEST_DATA_DIR=$(abspath test/data)

LMODE = dynamic
STATIC = 1
LMODE = dynamiic
LMODE2 = dynamic
ifdef STATIC
LMODE = static
Expand Down

0 comments on commit 977aaa4

Please sign in to comment.