BitSharper.StoredBlock.StoredBlock C# (CSharp) 메소드

StoredBlock() 공개 메소드

public StoredBlock ( Block header, BigInteger chainWork, uint height ) : System
header Block
chainWork Org.BouncyCastle.Math.BigInteger
height uint
리턴 System
        public StoredBlock(Block header, BigInteger chainWork, uint height)
        {
            _header = header;
            _chainWork = chainWork;
            _height = height;
        }