mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-02-13 15:46:24 +00:00
move root function to the end
This commit is contained in:
parent
02c9178fb2
commit
c2c8ee4353
@ -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