-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3879 from MetaMask/normalize-transactions
Normalize transactions
- Loading branch information
Showing
8 changed files
with
220 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
|
||
const version = 24 | ||
|
||
/* | ||
This migration ensures that the from address in txParams is to lower case for | ||
all unapproved transactions | ||
*/ | ||
|
||
const clone = require('clone') | ||
|
||
module.exports = { | ||
version, | ||
|
||
migrate: function (originalVersionedData) { | ||
const versionedData = clone(originalVersionedData) | ||
versionedData.meta.version = version | ||
try { | ||
const state = versionedData.data | ||
const newState = transformState(state) | ||
versionedData.data = newState | ||
} catch (err) { | ||
console.warn(`MetaMask Migration #${version}` + err.stack) | ||
} | ||
return Promise.resolve(versionedData) | ||
}, | ||
} | ||
|
||
function transformState (state) { | ||
const newState = state | ||
const transactions = newState.TransactionController.transactions | ||
|
||
newState.TransactionController.transactions = transactions.map((txMeta, _, txList) => { | ||
if ( | ||
txMeta.status === 'unapproved' && | ||
txMeta.txParams && | ||
txMeta.txParams.from | ||
) { | ||
txMeta.txParams.from = txMeta.txParams.from.toLowerCase() | ||
} | ||
return txMeta | ||
}) | ||
return newState | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,4 +34,5 @@ module.exports = [ | |
require('./021'), | ||
require('./022'), | ||
require('./023'), | ||
require('./024'), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
const assert = require('assert') | ||
const migration24 = require('../../../app/scripts/migrations/024') | ||
const properTime = (new Date()).getTime() | ||
const storage = { | ||
"meta": {}, | ||
"data": { | ||
"TransactionController": { | ||
"transactions": [ | ||
] | ||
}, | ||
}, | ||
} | ||
|
||
const transactions = [] | ||
|
||
|
||
while (transactions.length <= 10) { | ||
transactions.push({ txParams: { from: '0x8aCce2391c0d510a6c5E5d8f819a678f79b7e675' }, status: 'unapproved' }) | ||
transactions.push({ txParams: { from: '0x8aCce2391c0d510a6c5E5d8f819a678f79b7e675' }, status: 'confirmed' }) | ||
} | ||
|
||
|
||
storage.data.TransactionController.transactions = transactions | ||
|
||
describe('storage is migrated successfully and the txParams.from are lowercase', () => { | ||
it('should lowercase the from for unapproved txs', (done) => { | ||
migration24.migrate(storage) | ||
.then((migratedData) => { | ||
const migratedTransactions = migratedData.data.TransactionController.transactions | ||
migratedTransactions.forEach((tx) => { | ||
if (tx.status === 'unapproved') assert.equal(tx.txParams.from, '0x8acce2391c0d510a6c5e5d8f819a678f79b7e675') | ||
else assert.equal(tx.txParams.from, '0x8aCce2391c0d510a6c5E5d8f819a678f79b7e675') | ||
}) | ||
done() | ||
}).catch(done) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters