move root function to the end

This commit is contained in:
Iuri Matias 2018-08-06 11:44:38 -04:00 committed by Pascal Precht
parent 92c952c7d1
commit af4bae7ced
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 14 additions and 0 deletions

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