本文整理汇总了C++中cryptonote::core::get_blockchain_total_transactions方法的典型用法代码示例。如果您正苦于以下问题:C++ core::get_blockchain_total_transactions方法的具体用法?C++ core::get_blockchain_total_transactions怎么用?C++ core::get_blockchain_total_transactions使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cryptonote::core
的用法示例。
在下文中一共展示了core::get_blockchain_total_transactions方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
bool one_block::verify_1(CryptoNote::core& c, size_t ev_index, const std::vector<test_event_entry> &events)
{
DEFINE_TESTS_ERROR_CONTEXT("one_block::verify_1");
alice = boost::get<CryptoNote::AccountBase>(events[1]);
// check balances
//std::vector<const CryptoNote::Block*> chain;
//map_hash2tx_t mtx;
//CHECK_TEST_CONDITION(find_block_chain(events, chain, mtx, get_block_hash(boost::get<CryptoNote::Block>(events[1]))));
//CHECK_TEST_CONDITION(get_block_reward(0) == get_balance(alice, events, chain, mtx));
// check height
std::list<CryptoNote::Block> blocks;
std::list<Crypto::PublicKey> outs;
bool r = c.get_blocks(0, 100, blocks);
//c.get_outs(100, outs);
CHECK_TEST_CONDITION(r);
CHECK_TEST_CONDITION(blocks.size() == 1);
//CHECK_TEST_CONDITION(outs.size() == blocks.size());
CHECK_TEST_CONDITION(c.get_blockchain_total_transactions() == 1);
CHECK_TEST_CONDITION(blocks.back() == boost::get<CryptoNote::Block>(events[0]));
return true;
}
示例2:
//-----------------------------------------------------------------------------------------------------
bool gen_simple_chain_split_1::check_split_not_switched2(cryptonote::core& c, size_t ev_index, const std::vector<test_event_entry> &events)
{
DEFINE_TESTS_ERROR_CONTEXT("gen_simple_chain_split_1::check_split_not_switched2");
//check height
CHECK_TEST_CONDITION(c.get_current_blockchain_height() == 9);
CHECK_TEST_CONDITION(c.get_blockchain_total_transactions() == 9);
CHECK_TEST_CONDITION(c.get_tail_id() == get_block_hash(boost::get<cryptonote::block>(events[8])));
CHECK_TEST_CONDITION(c.get_alternative_blocks_count() == 3);
return true;
}