コード例 #1
0
ファイル: Block.cs プロジェクト: cwaldron/CafeLib
 private UInt256 ComputeMerkleRoot() => MerkleTree.ComputeMerkleRoot(Txs);
コード例 #2
0
ファイル: MerkleTree.cs プロジェクト: cwaldron/CafeLib
 public static UInt256 ComputeMerkleRoot(IEnumerable <Transaction> txs)
 {
     using var mt = new MerkleTree();
     mt.AddTransactions(txs);
     return(mt.GetMerkleRoot());
 }