LockTime
class LockTime implements JsonSerializable (View source)
Transaction LockTime.
LockTime < 500000000 Specifies the block height after which this transaction can be included in a block.
LockTime >= 500000000 pecifies the UNIX timestamp after which this transaction can be included in a block.
Properties
int | $value | The lock time value |
Methods
Creates a new LockTime object.
Get the locked until height.
Get the locked until date.
Check if the lock time depends on block height.
Check if the lock time depends on timestamp.
JsonSerializable implementation.
No description
Details
__construct(int $locktime)
Creates a new LockTime object.
int
height()
Get the locked until height.
DateTime|bool
date()
Get the locked until date.
bool
isHeightLock()
Check if the lock time depends on block height.
bool
isTimeLock()
Check if the lock time depends on timestamp.
int
jsonSerialize()
JsonSerializable implementation.
string
__toString()
No description