Replace std::vector<unsigned char> with Blob

This commit is contained in:
Vinnie Falco
2013-06-07 15:14:10 -07:00
parent a6fdabc68a
commit b51edb58fc
72 changed files with 352 additions and 334 deletions

View File

@@ -66,9 +66,9 @@ void LedgerProposal::bowOut()
mProposeSeq = seqLeave;
}
std::vector<unsigned char> LedgerProposal::sign(void)
Blob LedgerProposal::sign(void)
{
std::vector<unsigned char> ret;
Blob ret;
mPrivateKey.signNodePrivate(getSigningHash(), ret);
// XXX If this can fail, find out sooner.