private void _read()
 {
     _sigStackLen    = m_io.ReadU1();
     _derSig         = new DerSignature(m_io, this, m_root);
     _sigType        = ((BitcoinTransaction.SighashType)m_io.ReadU1());
     _pubkeyStackLen = m_io.ReadU1();
     _pubkey         = new PublicKey(m_io, this, m_root);
 }
Beispiel #2
0
 private void _read()
 {
     _lenSigStack    = m_io.ReadU1();
     _derSig         = new DerSignature(m_io, this, m_root);
     _sigType        = ((SighashType)m_io.ReadU1());
     _lenPubkeyStack = m_io.ReadU1();
     _pubkey         = new PublicKey(m_io, this, m_root);
 }