conflict in action

This commit is contained in:
Jonathan Rainville 2018-08-08 12:36:19 -04:00 committed by Pascal Precht
parent f66a018241
commit ea3cd474b9
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 13 additions and 0 deletions

View File

@ -74,6 +74,19 @@ export const processLogs = {
request: (processName) => action(PROCESS_LOGS[REQUEST], {processName}),
success: (processLogs) => action(PROCESS_LOGS[SUCCESS], {processLogs}),
failure: (error) => action(PROCESS_LOGS[FAILURE], {error})
export function initBlockHeader(){
return {
type: INIT_BLOCK_HEADER
};
}
export function fetchContractProfile(contractName) {
return {
type: FETCH_CONTRACT_PROFILE,
contractName
};
}
};