add "reject" method to PendingTxActions (not implemented yet)

pull/89/head
Szymon Lesisz 6 years ago
parent 7375f70a18
commit 7083c6e0d1

@ -2,8 +2,13 @@
import * as PENDING from 'actions/constants/pendingTx';
import type {
Action, ThunkAction, GetState, Dispatch,
} from 'flowtype';
import type { State, PendingTx } from 'reducers/PendingTxReducer';
export type PendingTxAction = {
type: typeof PENDING.FROM_STORAGE,
payload: State
@ -20,4 +25,29 @@ export type PendingTxAction = {
} | {
type: typeof PENDING.TX_TOKEN_ERROR,
tx: PendingTx,
}
}
export const reject = (tx: PendingTx): ThunkAction => (dispatch: Dispatch, getState: GetState): void => {
/*
dispatch({
type: NOTIFICATION.ADD,
payload: {
type: 'warning',
title: 'Pending transaction rejected',
message: `Transaction with id: ${tx.id} not found.`,
cancelable: true,
actions: [
{
label: 'OK',
callback: () => {
dispatch({
type: PENDING.TX_RESOLVED,
tx,
});
},
},
],
},
});
*/
};
Loading…
Cancel
Save