mirror of https://github.com/embarklabs/embark.git
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…
Reference in New Issue