mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-02-20 02:58:05 +00:00
move root function to the end
This commit is contained in:
parent
92c952c7d1
commit
af4bae7ced
@ -166,3 +166,17 @@ export function *watchFetchContractProfile() {
|
|||||||
yield takeEvery(actions.FETCH_CONTRACT_PROFILE, fetchContractProfile);
|
yield takeEvery(actions.FETCH_CONTRACT_PROFILE, fetchContractProfile);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export default function *root() {
|
||||||
|
yield all([
|
||||||
|
fork(watchInitBlockHeader),
|
||||||
|
fork(watchFetchAccounts),
|
||||||
|
fork(watchFetchProcesses),
|
||||||
|
fork(watchFetchProcessLogs),
|
||||||
|
fork(watchFetchBlocks),
|
||||||
|
fork(watchFetchContracts),
|
||||||
|
fork(watchFetchContract),
|
||||||
|
fork(watchFetchContractProfile),
|
||||||
|
fork(watchFetchTransactions)
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user