Esempio n. 1
0
 public BlockAssembler Create(ChainedBlock chainTip, AssemblerOptions options = null)
 {
     return(new PowBlockAssembler(this.consensusLoop, this.network, this.mempoolLock, this.mempool, this.dateTimeProvider, chainTip, this.loggerFactory, options));
 }
Esempio n. 2
0
 public override BlockAssembler Create(ChainedBlock chainTip, AssemblerOptions options = null)
 {
     return(new PosBlockAssembler(this.consensusLoop, this.network, this.mempoolScheduler, this.mempool,
                                  this.dateTimeProvider, this.stakeChain, chainTip, this.loggerFactory, options));
 }
Esempio n. 3
0
 public override BlockAssembler Create(AssemblerOptions options = null)
 {
     return(new PowBlockAssembler(this.consensusLoop, this.network, this.chain, this.mempoolLock, this.mempool, this.dateTimeProvider, this.logger, options));
 }
Esempio n. 4
0
 public abstract BlockAssembler Create(ChainedBlock chainTip, AssemblerOptions options = null);
Esempio n. 5
0
 public abstract BlockAssembler Create(AssemblerOptions options = null);