本文整理汇总了C++中TestTransactionBuilder::appendExtra方法的典型用法代码示例。如果您正苦于以下问题:C++ TestTransactionBuilder::appendExtra方法的具体用法?C++ TestTransactionBuilder::appendExtra怎么用?C++ TestTransactionBuilder::appendExtra使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TestTransactionBuilder
的用法示例。
在下文中一共展示了TestTransactionBuilder::appendExtra方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: assert
std::unique_ptr<ITransactionReader> FusionTransactionBuilder::buildReader() const {
assert(m_inputCount > 0);
assert(m_firstInput <= m_amount);
assert(m_amount > m_currency.defaultDustThreshold());
TestTransactionBuilder builder;
if (m_extraSize != 0) {
builder.appendExtra(BinaryArray(m_extraSize, 0));
}
if (m_firstInput != 0) {
builder.addTestInput(m_firstInput);
}
if (m_amount > m_firstInput) {
builder.addTestInput(m_amount - m_firstInput - (m_inputCount - 1) * m_currency.defaultDustThreshold());
for (size_t i = 0; i < m_inputCount - 1; ++i) {
builder.addTestInput(m_currency.defaultDustThreshold());
}
}
AccountPublicAddress address = generateAddress();
std::vector<uint64_t> outputAmounts;
assert(m_amount >= m_firstOutput + m_fee);
decomposeAmount(m_amount - m_firstOutput - m_fee, m_currency.defaultDustThreshold(), outputAmounts);
std::sort(outputAmounts.begin(), outputAmounts.end());
if (m_firstOutput != 0) {
builder.addOutput(m_firstOutput, address);
}
for (auto outAmount : outputAmounts) {
builder.addOutput(outAmount, address);
}
return builder.build();
}