Show / Hide Table of Contents

Class BlockChain<T>.TipChangedEventArgs

Provides data for the TipChanged event.

Inheritance
Object
BlockChain<T>.TipChangedEventArgs
Namespace: Libplanet.Blockchain
Assembly: Libplanet.dll
Syntax
public class TipChangedEventArgs : EventArgs

Properties

| Improve this Doc View Source

Hash

The Hash of Tip after changed.

Declaration
public HashDigest<SHA256> Hash { get; set; }
Property Value
Type Description
HashDigest<SHA256>
| Improve this Doc View Source

Index

The Index of Tip after changed.

Declaration
public long Index { get; set; }
Property Value
Type Description
Int64
| Improve this Doc View Source

PreviousHash

The Hash of Tip before changed. Can be null if the blockchain was empty before.

Declaration
public HashDigest<SHA256>? PreviousHash { get; set; }
Property Value
Type Description
Nullable<HashDigest<SHA256>>
| Improve this Doc View Source

PreviousIndex

The Index of Tip before changed. Can be null if the blockchain was empty before.

Declaration
public long? PreviousIndex { get; set; }
Property Value
Type Description
Nullable<Int64>
  • Improve this Doc
  • View Source
Back to top Copyright © 2019–2020 Planetarium