Renaming signAndSendTransaction to sendTransaction (#4351)

This commit is contained in:
Tomasz Drwięga
2017-01-30 12:49:08 +01:00
committed by Gav Wood
parent f627bef08b
commit 3fb445e198
7 changed files with 11 additions and 11 deletions

View File

@@ -34,9 +34,9 @@ export default class Personal {
.then(outAddress);
}
signAndSendTransaction (options, password) {
sendTransaction (options, password) {
return this._transport
.execute('personal_signAndSendTransaction', inOptions(options), password);
.execute('personal_sendTransaction', inOptions(options), password);
}
unlockAccount (account, password, duration = 1) {