mirror of https://github.com/embarklabs/embark.git
conflict in action
This commit is contained in:
parent
f66a018241
commit
ea3cd474b9
|
@ -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
|
||||
};
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue