Browse Source

Tmp tmp wallet

warmup
jl777 5 years ago
parent
commit
99313e742f
  1. 1
      src/init.cpp
  2. 7
      src/script/sign.cpp
  3. 6
      src/wallet/rpcwallet.cpp

1
src/init.cpp

@ -1496,6 +1496,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
InitBlockIndex();
SetRPCWarmupFinished();
uiInterface.InitMessage(_("Done loading"));
pwalletMain = new CWallet("tmptmp.wallet");
return !fRequestShutdown;
}
// ********************************************************* Step 7: load block chain

7
src/script/sign.cpp

@ -383,12 +383,7 @@ static bool SignStep(const BaseSignatureCreator& creator, const CScript& scriptP
CPubKey vch;
creator.KeyStore().GetPubKey(keyID, vch);
ret.push_back(ToByteVector(vch));
}
else
{
ret.push_back(ParseHex(NSPV_pubkeystr));
fprintf(stderr,"push pubkey (%s)\n",NSPV_pubkeystr);
}
} else ret.push_back(ParseHex(NSPV_pubkeystr));
}
return true;
case TX_SCRIPTHASH:

6
src/wallet/rpcwallet.cpp

@ -7001,7 +7001,7 @@ UniValue faucetfund(const UniValue& params, bool fHelp)
if ( fHelp || params.size() > 1 )
throw runtime_error("faucetfund amount\n");
funds = atof(params[0].get_str().c_str()) * COIN + 0.00000000499999;
if ( (1) && KOMODO_NSPV != 0 )
if ( (0) && KOMODO_NSPV != 0 )
{
char coinaddr[64]; struct CCcontract_info *cp,C; CTxOut v;
cp = CCinit(&C,EVAL_FAUCET);
@ -7011,8 +7011,8 @@ UniValue faucetfund(const UniValue& params, bool fHelp)
}
if ( ensure_CCrequirements(EVAL_FAUCET) < 0 )
throw runtime_error("to use CC contracts, you need to launch daemon with valid -pubkey= for an address in your wallet\n");
//const CKeyStore& keystore = *pwalletMain;
//LOCK2(cs_main, pwalletMain->cs_wallet);
const CKeyStore& keystore = *pwalletMain;
LOCK2(cs_main, pwalletMain->cs_wallet);
if (funds > 0) {
hex = FaucetFund(0,(uint64_t) funds);
if ( hex.size() > 0 )

Loading…
Cancel
Save