CreateSpamMsgTx fallback to "nobody"

This commit is contained in:
Miguel Freitas 2013-10-31 14:04:13 -02:00
parent 2c48386b4e
commit 0678ae169b

View File

@ -3530,6 +3530,8 @@ static bool CreateSpamMsgTx(CTransaction &txNew, std::vector<unsigned char> &sal
if( pwalletMain->vchDefaultKey.IsValid() ) {
keyID = pwalletMain->vchDefaultKey.GetID();
strUsername = pwalletMain->mapKeyMetadata[keyID].username;
} else {
strUsername = "nobody";
}
}
printf("CreateSpamMsgTx: keyId = %s\n", keyID.ToString().c_str() );