From af4bae7ced974bc6bc2b8cf0aa459abe02d0155d Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Mon, 6 Aug 2018 11:44:38 -0400 Subject: [PATCH] move root function to the end --- embark-ui/src/sagas/index.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/embark-ui/src/sagas/index.js b/embark-ui/src/sagas/index.js index 5b7d178b..1dba1c15 100644 --- a/embark-ui/src/sagas/index.js +++ b/embark-ui/src/sagas/index.js @@ -166,3 +166,17 @@ export function *watchFetchContractProfile() { 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) + ]); +} +