mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
52 lines
1.3 KiB
C++
52 lines
1.3 KiB
C++
#ifndef __PROPOSELEDGER__
|
|
#define __PROPOSELEDEGR__
|
|
|
|
#include <vector>
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include "NewcoinAddress.h"
|
|
#include "Serializer.h"
|
|
|
|
class LedgerProposal
|
|
{
|
|
protected:
|
|
|
|
uint256 mPreviousLedger, mCurrentHash;
|
|
uint32 mProposeSeq;
|
|
|
|
uint160 mPeerID;
|
|
NewcoinAddress mPublicKey; // Peer
|
|
NewcoinAddress mPrivateKey; // Our's
|
|
NewcoinAddress mSeed; // Our's
|
|
|
|
static const uint32 sProposeMagic = 0x50525000; // PRP
|
|
|
|
public:
|
|
|
|
typedef boost::shared_ptr<LedgerProposal> pointer;
|
|
|
|
// proposal from peer
|
|
LedgerProposal(const uint256& prevLgr, uint32 proposeSeq, const uint256& propose, const NewcoinAddress& naPeerPublic);
|
|
|
|
// our first proposal
|
|
LedgerProposal(const NewcoinAddress& naSeed, const uint256& prevLedger, const uint256& position);
|
|
|
|
uint256 getSigningHash() const;
|
|
bool checkSign(const std::string& signature);
|
|
|
|
const uint160& getPeerID() const { return mPeerID; }
|
|
const uint256& getCurrentHash() const { return mCurrentHash; }
|
|
const uint256& getPrevLedger() const { return mPreviousLedger; }
|
|
uint32 getProposeSeq() const { return mProposeSeq; }
|
|
const NewcoinAddress& peekSeed() const { return mSeed; }
|
|
std::vector<unsigned char> getPubKey() const { return mPublicKey.getNodePublic(); }
|
|
std::vector<unsigned char> sign();
|
|
|
|
void changePosition(const uint256& newPosition);
|
|
};
|
|
|
|
#endif
|
|
|
|
// vim:ts=4
|