Maciej Hirsz cf59688896 Enable Parity Signer Message Signing (#1663)
* Enable Parity Signer to sign messages

* Verify that message signature is correct

* Type systems are awesome :)
2018-04-25 19:36:29 -05:00

8 lines
195 B
TypeScript

import { SagaIterator } from 'redux-saga';
import { all } from 'redux-saga/effects';
import { signing } from './signing';
export function* message(): SagaIterator {
yield all([...signing]);
}