[migration] reset mining pool sha to force refreshing

This commit is contained in:
nymkappa 2024-04-04 14:27:50 +09:00
parent b74fbee069
commit abdb27af3f
No known key found for this signature in database
GPG Key ID: 92358FC85D9645DE

View File

@ -655,6 +655,7 @@ class DatabaseMigration {
await this.$executeQuery('TRUNCATE hashrates'); await this.$executeQuery('TRUNCATE hashrates');
await this.$executeQuery('TRUNCATE difficulty_adjustments'); await this.$executeQuery('TRUNCATE difficulty_adjustments');
await this.$executeQuery(`UPDATE state SET string = NULL WHERE name = 'pools_json_sha'`);
await this.updateToSchemaVersion(75); await this.updateToSchemaVersion(75);
} }