本文整理了Java中org.bitcoinj.core.Block.addCoinbaseTransaction()
方法的一些代码示例,展示了Block.addCoinbaseTransaction()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Block.addCoinbaseTransaction()
方法的具体详情如下:
包路径:org.bitcoinj.core.Block
类名称:Block
方法名:addCoinbaseTransaction
[英]Adds a coinbase transaction to the block. This exists for unit tests.
[中]将coinbase事务添加到块中。这对于单元测试是存在的。
代码示例来源:origin: cash.bitcoinj/bitcoinj-core
Block b = new Block(params, version);
b.setDifficultyTarget(difficultyTarget);
b.addCoinbaseTransaction(pubKey, coinbaseValue, height);
代码示例来源:origin: greenaddress/GreenBits
Block b = new Block(params, version);
b.setDifficultyTarget(difficultyTarget);
b.addCoinbaseTransaction(pubKey, coinbaseValue, height);
代码示例来源:origin: HashEngineering/dashj
Block b = new Block(params, version);
b.setDifficultyTarget(difficultyTarget);
b.addCoinbaseTransaction(pubKey, coinbaseValue, height);
代码示例来源:origin: fr.acinq/bitcoinj-core
Block b = new Block(params, version);
b.setDifficultyTarget(difficultyTarget);
b.addCoinbaseTransaction(pubKey, coinbaseValue, height);
代码示例来源:origin: greenaddress/GreenBits
b44.addCoinbaseTransaction(coinbaseOutKeyPubKey, ZERO, chainHeadHeight + 15);
内容来源于网络,如有侵权,请联系作者删除!