Removing duplicate sign
This commit is contained in:
parent
8c049e5d05
commit
ce5dfd8e34
@ -303,9 +303,9 @@ export default class Parity {
|
|||||||
.then(outAddress);
|
.then(outAddress);
|
||||||
}
|
}
|
||||||
|
|
||||||
postSign (address, hash) {
|
postSign (from, message) {
|
||||||
return this._transport
|
return this._transport
|
||||||
.execute('parity_postSign', inAddress(address), inHex(hash));
|
.execute('parity_postSign', inAddress(from), inHex(message));
|
||||||
}
|
}
|
||||||
|
|
||||||
postTransaction (options) {
|
postTransaction (options) {
|
||||||
@ -313,11 +313,6 @@ export default class Parity {
|
|||||||
.execute('parity_postTransaction', inOptions(options));
|
.execute('parity_postTransaction', inOptions(options));
|
||||||
}
|
}
|
||||||
|
|
||||||
postSign (from, message) {
|
|
||||||
return this._transport
|
|
||||||
.execute('parity_postSign', from, message);
|
|
||||||
}
|
|
||||||
|
|
||||||
registryAddress () {
|
registryAddress () {
|
||||||
return this._transport
|
return this._transport
|
||||||
.execute('parity_registryAddress')
|
.execute('parity_registryAddress')
|
||||||
|
Loading…
Reference in New Issue
Block a user