LastModification return the timestamp at which the last version of the identity became valid.
()
| 510 | |
| 511 | // LastModification return the timestamp at which the last version of the identity became valid. |
| 512 | func (i *Identity) LastModification() timestamp.Timestamp { |
| 513 | return timestamp.Timestamp(i.lastVersion().unixTime) |
| 514 | } |
| 515 | |
| 516 | // LastModificationLamports return the lamport times at which the last version of the identity became valid. |
| 517 | func (i *Identity) LastModificationLamports() map[string]lamport.Time { |
nothing calls this directly
no test coverage detected