2020-01-09 04:34:58 +01:00
|
|
|
import txStateHistoryHelper from '../../app/scripts/controllers/transactions/lib/tx-state-history-helper'
|
2018-05-25 08:19:39 +02:00
|
|
|
|
2020-01-09 04:34:58 +01:00
|
|
|
export default createTxMeta
|
2018-05-25 08:19:39 +02:00
|
|
|
|
2018-07-03 21:42:14 +02:00
|
|
|
function createTxMeta (partialMeta) {
|
2018-05-25 08:19:39 +02:00
|
|
|
const txMeta = Object.assign({
|
|
|
|
status: 'unapproved',
|
|
|
|
txParams: {},
|
|
|
|
}, partialMeta)
|
|
|
|
// initialize history
|
|
|
|
txMeta.history = []
|
|
|
|
// capture initial snapshot of txMeta for history
|
|
|
|
const snapshot = txStateHistoryHelper.snapshotFromTxMeta(txMeta)
|
|
|
|
txMeta.history.push(snapshot)
|
|
|
|
return txMeta
|
|
|
|
}
|