1
0
mirror of https://github.com/Qortal/qortal.git synced 2025-07-26 03:31:23 +00:00

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

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