Class BlockChain<T>.TipChangedEventArgs
Inheritance
BlockChain<T>.TipChangedEventArgs
Assembly: Libplanet.dll
Syntax
public class TipChangedEventArgs : EventArgs
Properties
|
Improve this Doc
View Source
Hash
Declaration
public HashDigest<SHA256> Hash { get; set; }
Property Value
|
Improve this Doc
View Source
Index
Declaration
public long Index { get; set; }
Property Value
|
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
|
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