mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-20 07:58:51 +00:00
cf59688896
* Enable Parity Signer to sign messages * Verify that message signature is correct * Type systems are awesome :)
8 lines
195 B
TypeScript
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]);
|
|
}
|