Add blocks minted penalty to Accounts table

This commit is contained in:
CalDescent 2022-11-26 11:19:23 +00:00
parent 4e829a2d05
commit b0c9ce7482

View File

@ -975,6 +975,11 @@ public class HSQLDBDatabaseUpdates {
stmt.execute("ALTER TABLE TradeBotStates ALTER COLUMN receiving_account_info SET DATA TYPE VARBINARY(128)");
break;
case 44:
// Add blocks minted penalty
stmt.execute("ALTER TABLE Accounts ADD blocks_minted_penalty INTEGER NOT NULL DEFAULT 0");
break;
default:
// nothing to do
return false;