Skip to content

Commit

Permalink
Bump DB schema versions to 3 (#498)
Browse files Browse the repository at this point in the history
  • Loading branch information
NullSoldier committed Dec 1, 2021
1 parent f7f0444 commit 1c74f31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ironfish/src/account/accountsdb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
import { createDB } from '../storage/utils'
import { WorkerPool } from '../workerPool'

const DATABASE_VERSION = 2
const DATABASE_VERSION = 3

export type Account = {
name: string
Expand Down
2 changes: 1 addition & 1 deletion ironfish/src/blockchain/blockchain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ import {
TransactionsSchema,
} from './schema'

const DATABASE_VERSION = 2
const DATABASE_VERSION = 3

export class Blockchain {
db: IDatabase
Expand Down

0 comments on commit 1c74f31

Please sign in to comment.