QDN go-live timestamp set to Fri, 14 Jan 2022 16:00:00 UTC

This commit is contained in:
CalDescent 2022-01-12 20:53:57 +00:00
parent 2a6244a5c2
commit 6761b91400

View File

@ -382,7 +382,10 @@ public abstract class Transaction {
* @return transaction version number
*/
public static int getVersionByTimestamp(long timestamp) {
return 4; // TODO: hard fork timestamp!!
if (timestamp >= 1642176000000L) {
return 5;
}
return 4;
}
/**