Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
});
}
private hideDeploy = (): void => {
this.setState({ isDeployOpen: false });
}
private triggerUpdate = (): void => {
this.setState({ updated: Date.now() });
}
}
export default withMulti(
withRouter(ContractsApp),
translate,
withObservable(keyring.accounts.subject, { propName: 'accounts' }),
withObservable(keyring.contracts.subject, { propName: 'contracts' })
);
if (isFunction(txFailedCb)) {
txFailedCb(null);
}
}
}
}
export {
Signer
};
export default withMulti(
Signer,
translate,
withApi,
withObservable(keyring.accounts.subject, { propName: 'allAccounts' })
);
icon='check'
onClick={this.showModal}
/>
);
}
private onChangeVote = (voteValue: boolean): void => {
this.setState({ voteValue });
}
}
export default withMulti(
Voting,
translate,
withObservable(keyring.accounts.subject, { propName: 'allAccounts' })
);