integration phase

This commit is contained in:
Wladimir J. van der Laan
2011-05-14 11:18:39 +02:00
parent 1f2e0df865
commit 6644d98d9e
20 changed files with 5521 additions and 11 deletions

View File

@@ -311,7 +311,7 @@ public:
CAutoBN_CTX pctx;
CBigNum bnBase = nBase;
CBigNum bn0 = 0;
string str;
std::string str;
CBigNum bn = *this;
BN_set_negative(&bn, false);
CBigNum dv;
@@ -351,7 +351,7 @@ public:
template<typename Stream>
void Unserialize(Stream& s, int nType=0, int nVersion=VERSION)
{
vector<unsigned char> vch;
std::vector<unsigned char> vch;
::Unserialize(s, vch, nType, nVersion);
setvch(vch);
}