1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00
metamask-extension/test/lib/createTxMeta.js
Brad Decker a49a4a066c
expand transaction constants coverage (#9790)
* expand transaction constants coverage

* touchups

* dont import inside of e2e

* Update app/scripts/controllers/transactions/tx-state-manager.js

Co-authored-by: Mark Stacey <markjstacey@gmail.com>

* Update test/unit/app/controllers/transactions/tx-controller-test.js

Co-authored-by: Mark Stacey <markjstacey@gmail.com>

Co-authored-by: Mark Stacey <markjstacey@gmail.com>
2020-11-07 01:38:12 -06:00

17 lines
536 B
JavaScript

import { snapshotFromTxMeta } from '../../app/scripts/controllers/transactions/lib/tx-state-history-helpers'
import { TRANSACTION_STATUSES } from '../../shared/constants/transaction'
export default function createTxMeta(partialMeta) {
const txMeta = {
status: TRANSACTION_STATUSES.UNAPPROVED,
txParams: {},
...partialMeta,
}
// initialize history
txMeta.history = []
// capture initial snapshot of txMeta for history
const snapshot = snapshotFromTxMeta(txMeta)
txMeta.history.push(snapshot)
return txMeta
}