move root function to the end

This commit is contained in:
Iuri Matias 2018-08-06 11:44:38 -04:00
parent acb392424a
commit 468ee54449

View File

@ -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)
]);
}