|
|
|
@ -93,7 +93,7 @@ class Settings { |
|
|
|
|
const hashedMsg = executionContext.web3().sha3(message) |
|
|
|
|
try { |
|
|
|
|
executionContext.web3().eth.sign(account, hashedMsg, (error, signedData) => { |
|
|
|
|
cb(error, hashedMsg, signedData) |
|
|
|
|
cb(error.message, hashedMsg, signedData) |
|
|
|
|
}) |
|
|
|
|
} catch (e) { |
|
|
|
|
cb(e.message) |
|
|
|
@ -105,7 +105,7 @@ class Settings { |
|
|
|
|
try { |
|
|
|
|
var personal = new Personal(executionContext.web3().currentProvider) |
|
|
|
|
personal.sign(hashedMsg, account, passphrase, (error, signedData) => { |
|
|
|
|
cb(error, hashedMsg, signedData) |
|
|
|
|
cb(error.message, hashedMsg, signedData) |
|
|
|
|
}) |
|
|
|
|
} catch (e) { |
|
|
|
|
cb(e.message) |
|
|
|
|