Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TESTNETS, migrate, version } from './154';
import { TESTNETS, migrate, version } from './152.1';

const mockNetworks = {
'bip122:000000000019d6689c085ae165831e93': {
Expand All @@ -15,7 +15,7 @@ const mockNetworks = {
},
};

const oldVersion = 153;
const oldVersion = 152;

describe(`migration #${version}`, () => {
it('updates the version metadata', async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ type VersionedData = {
data: Record<string, unknown>;
};

export const version = 154;
export const version = 152.1;

// Since this is a migration, we don't want to rely on data
// from outside packages that could change. Therefore, we'll
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/migrations/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ const migrations = [
require('./150'),
require('./151'),
require('./152'),
require('./152.1'),
require('./153'),
require('./154'),
];

export default migrations;
Loading