mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-01-22 05:08:50 +00:00
move root function to the end
This commit is contained in:
parent
acb392424a
commit
468ee54449
@ -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)
|
||||
]);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user