From 1a5510f53056fafd1da0c050fb9a55cc79261628 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Wed, 30 May 2012 22:14:47 -0700 Subject: [PATCH] Add a helper function. --- src/LedgerProposal.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/LedgerProposal.h b/src/LedgerProposal.h index 961ba47244..6939fd7208 100644 --- a/src/LedgerProposal.h +++ b/src/LedgerProposal.h @@ -38,6 +38,7 @@ public: uint32 getProposeSeq() const { return mProposeSeq; } std::vector getPubKey() const { return mKey->GetPubKey(); } std::vector sign(); + CKey::pointer peekKey() { return mKey; } void changePosition(const uint256& newPosition); };