Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Remove loga
Browse files Browse the repository at this point in the history
  • Loading branch information
reyraa committed Aug 10, 2017
1 parent 06c9cf5 commit 6a750f7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/components/signVerify/signMessageComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ class SignMessageComponent extends React.Component {
}

sign(message) {
console.log('result is shown0');
const signedMessage = Lisk.crypto.signMessageWithSecret(message,
this.props.account.passphrase);
const result = Lisk.crypto.printSignedMessage(
Expand All @@ -27,14 +26,12 @@ class SignMessageComponent extends React.Component {
}

showResult() {
console.log('result is shown1');
const copied = this.props.copyToClipboard(this.state.result, {
message: 'Press #{key} to copy',
});
if (copied) {
this.props.successToast({ label: 'Result copied to clipboard' });
}
console.log('result is shown');
this.setState({ resultIsShown: true });
}

Expand Down

0 comments on commit 6a750f7

Please sign in to comment.