common static method

InternalTransactionBean common(
  1. TransactionType tType,
  2. DateTime notBefore
)

Implementation

static InternalTransactionBean common(TransactionType tType, DateTime notBefore) {
  InternalTransactionBean result = InternalTransactionBean(tType.name, BigInt.from(notBefore.millisecondsSinceEpoch));
  return result;
}