383a3b8b02
- Replace ~290 BOOST_FOREACH with C++11 range-for across 41+ files - Replace boost::assign::map_list_of with C++11 brace initialization - Remove PAIRTYPE macro (no longer needed without BOOST_FOREACH) - Guard OpenSSL locking callbacks for 3.x (no-ops in >= 1.1.0) - Fix Qt deprecated APIs for Qt6 compat (QStyleOptionViewItemV4, setResizeMode) - Add openssl_compat.h version string wrapper - Enable C++17 in makefile.unix and triangles-qt.pro - Delete 163 dead Tor v2 source files (~150K lines removed) - Add embedded Tor scaffold (tor_embedded.h/cpp) using tor_api.h - Add build-libtor.sh helper and CODEX-TOR-GUIDE.md - Update makefile.unix and .pro with USE_TOR_EMBEDDED optional flag - Fallback to external tor_process when not compiled with libtor - IBD pipeline refill: 100 -> 1000 blocks - Send/recv buffer limits: unlimited -> 100MB/32MB - Orphan block cap: unlimited -> 750 with random eviction - Socket poll: 10ms -> 1ms during IBD - Message handler sleep: 10ms -> 1ms during IBD - Stall detection timeout: 5s -> 2s Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
60 lines
1.5 KiB
C++
60 lines
1.5 KiB
C++
#include <vector>
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include "script.h"
|
|
#include "key.h"
|
|
|
|
using namespace std;
|
|
|
|
// Helpers:
|
|
static std::vector<unsigned char>
|
|
Serialize(const CScript& s)
|
|
{
|
|
std::vector<unsigned char> sSerialized(s);
|
|
return sSerialized;
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE(sigopcount_tests)
|
|
|
|
BOOST_AUTO_TEST_CASE(GetSigOpCount)
|
|
{
|
|
// Test CScript::GetSigOpCount()
|
|
CScript s1;
|
|
BOOST_CHECK_EQUAL(s1.GetSigOpCount(false), 0);
|
|
BOOST_CHECK_EQUAL(s1.GetSigOpCount(true), 0);
|
|
|
|
uint160 dummy;
|
|
s1 << OP_1 << dummy << dummy << OP_2 << OP_CHECKMULTISIG;
|
|
BOOST_CHECK_EQUAL(s1.GetSigOpCount(true), 2);
|
|
s1 << OP_IF << OP_CHECKSIG << OP_ENDIF;
|
|
BOOST_CHECK_EQUAL(s1.GetSigOpCount(true), 3);
|
|
BOOST_CHECK_EQUAL(s1.GetSigOpCount(false), 21);
|
|
|
|
CScript p2sh;
|
|
p2sh.SetDestination(s1.GetID());
|
|
CScript scriptSig;
|
|
scriptSig << OP_0 << Serialize(s1);
|
|
BOOST_CHECK_EQUAL(p2sh.GetSigOpCount(scriptSig), 3);
|
|
|
|
std::vector<CKey> keys;
|
|
for (int i = 0; i < 3; i++)
|
|
{
|
|
CKey k;
|
|
k.MakeNewKey(true);
|
|
keys.push_back(k);
|
|
}
|
|
CScript s2;
|
|
s2.SetMultisig(1, keys);
|
|
BOOST_CHECK_EQUAL(s2.GetSigOpCount(true), 3);
|
|
BOOST_CHECK_EQUAL(s2.GetSigOpCount(false), 20);
|
|
|
|
p2sh.SetDestination(s2.GetID());
|
|
BOOST_CHECK_EQUAL(p2sh.GetSigOpCount(true), 0);
|
|
BOOST_CHECK_EQUAL(p2sh.GetSigOpCount(false), 0);
|
|
CScript scriptSig2;
|
|
scriptSig2 << OP_1 << dummy << dummy << Serialize(s2);
|
|
BOOST_CHECK_EQUAL(p2sh.GetSigOpCount(scriptSig2), 3);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|