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

__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

Details

__construct(int $locktime)

Creates a new LockTime object.

Parameters

int $locktime

The lock time value

int height()

Get the locked until height.

Return Value

int

Exceptions

RuntimeException

DateTime|bool date()

Get the locked until date.

Return Value

DateTime|bool

false on failure.

Exceptions

RuntimeException

bool isHeightLock()

Check if the lock time depends on block height.

Return Value

bool

bool isTimeLock()

Check if the lock time depends on timestamp.

Return Value

bool

int jsonSerialize()

JsonSerializable implementation.

Return Value

int

string __toString()

No description

Return Value

string