Merge pull request #5361
3223179
libbitcoinconsensus: don't require any global constructors (Cory Fields)
This commit is contained in:
commit
e6751ca68a
2 changed files with 13 additions and 12 deletions
|
@ -17,13 +17,6 @@
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
typedef vector<unsigned char> valtype;
|
typedef vector<unsigned char> valtype;
|
||||||
static const valtype vchFalse(0);
|
|
||||||
static const valtype vchZero(0);
|
|
||||||
static const valtype vchTrue(1, 1);
|
|
||||||
static const CScriptNum bnZero(0);
|
|
||||||
static const CScriptNum bnOne(1);
|
|
||||||
static const CScriptNum bnFalse(0);
|
|
||||||
static const CScriptNum bnTrue(1);
|
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
|
@ -239,6 +232,14 @@ bool static CheckMinimalPush(const valtype& data, opcodetype opcode) {
|
||||||
|
|
||||||
bool EvalScript(vector<vector<unsigned char> >& stack, const CScript& script, unsigned int flags, const BaseSignatureChecker& checker, ScriptError* serror)
|
bool EvalScript(vector<vector<unsigned char> >& stack, const CScript& script, unsigned int flags, const BaseSignatureChecker& checker, ScriptError* serror)
|
||||||
{
|
{
|
||||||
|
static const CScriptNum bnZero(0);
|
||||||
|
static const CScriptNum bnOne(1);
|
||||||
|
static const CScriptNum bnFalse(0);
|
||||||
|
static const CScriptNum bnTrue(1);
|
||||||
|
static const valtype vchFalse(0);
|
||||||
|
static const valtype vchZero(0);
|
||||||
|
static const valtype vchTrue(1, 1);
|
||||||
|
|
||||||
CScript::const_iterator pc = script.begin();
|
CScript::const_iterator pc = script.begin();
|
||||||
CScript::const_iterator pend = script.end();
|
CScript::const_iterator pend = script.end();
|
||||||
CScript::const_iterator pbegincodehash = script.begin();
|
CScript::const_iterator pbegincodehash = script.begin();
|
||||||
|
|
|
@ -14,13 +14,13 @@
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
|
string SanitizeString(const string& str)
|
||||||
|
{
|
||||||
/**
|
/**
|
||||||
* safeChars chosen to allow simple messages/URLs/email addresses, but avoid anything
|
* safeChars chosen to allow simple messages/URLs/email addresses, but avoid anything
|
||||||
* even possibly remotely dangerous like & or >
|
* even possibly remotely dangerous like & or >
|
||||||
*/
|
*/
|
||||||
static string safeChars("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890 .,;_/:?@()");
|
static string safeChars("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890 .,;_/:?@()");
|
||||||
string SanitizeString(const string& str)
|
|
||||||
{
|
|
||||||
string strResult;
|
string strResult;
|
||||||
for (std::string::size_type i = 0; i < str.size(); i++)
|
for (std::string::size_type i = 0; i < str.size(); i++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue