Whitespace.

This commit is contained in:
JoelKatz
2012-06-03 15:30:59 -07:00
parent 75ad545916
commit e16d9e48f7
2 changed files with 2 additions and 2 deletions

View File

@@ -49,4 +49,4 @@ std::vector<unsigned char> LedgerProposal::sign(void)
if (!mKey->Sign(getSigningHash(), ret))
throw std::runtime_error("unable to sign proposal");
return ret;
}
}

View File

@@ -36,9 +36,9 @@ public:
const uint256& getCurrentHash() const { return mCurrentHash; }
const uint256& getPrevLedger() const { return mPreviousLedger; }
uint32 getProposeSeq() const { return mProposeSeq; }
CKey::pointer peekKey() { return mKey; }
std::vector<unsigned char> getPubKey() const { return mKey->GetPubKey(); }
std::vector<unsigned char> sign();
CKey::pointer peekKey() { return mKey; }
void changePosition(const uint256& newPosition);
};