mirror of
https://github.com/trezor/trezor-wallet
synced 2025-02-15 17:42:03 +00:00
15 lines
340 B
JavaScript
15 lines
340 B
JavaScript
![]() |
/* @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
|
||
|
}
|