1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-02-15 17:42:03 +00:00
trezor-wallet/src/js/actions/PendingTxActions.js

15 lines
340 B
JavaScript
Raw Normal View History

2018-04-23 10:20:15 +00:00
/* @flow */
'use strict';
import * as PENDING from './constants/pendingTx';
import type { State, PendingTx } from '../reducers/PendingTxReducer'
export type PendingTxAction = {
type: typeof PENDING.FROM_STORAGE,
payload: State
} | {
type: typeof PENDING.TX_RESOLVED,
tx: PendingTx,
receipt: Object,
block: string
}