You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
/*
|
|
|
|
This migration ensures that the from address in txParams is to lower case for
|
|
all unapproved transactions
|
|
|
|
*/
|
|
|
|
import { cloneDeep } from 'lodash';
|
|
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction';
|
|
|
|
const version = 24;
|
|
|
|
export default {
|
|
version,
|
|
|
|
async migrate(originalVersionedData) {
|
|
const versionedData = cloneDeep(originalVersionedData);
|
|
versionedData.meta.version = version;
|
|
const state = versionedData.data;
|
|
const newState = transformState(state);
|
|
versionedData.data = newState;
|
|
return versionedData;
|
|
},
|
|
};
|
|
|
|
function transformState(state) {
|
|
const newState = state;
|
|
if (!newState.TransactionController) {
|
|
return newState;
|
|
}
|
|
const { transactions } = newState.TransactionController;
|
|
newState.TransactionController.transactions = transactions.map(
|
|
(txMeta, _) => {
|
|
if (
|
|
txMeta.status === TRANSACTION_STATUSES.UNAPPROVED &&
|
|
txMeta.txParams &&
|
|
txMeta.txParams.from
|
|
) {
|
|
txMeta.txParams.from = txMeta.txParams.from.toLowerCase();
|
|
}
|
|
return txMeta;
|
|
},
|
|
);
|
|
return newState;
|
|
}
|
|
|