eth_sign improvements backport (#4473)

* Fix postsign (#4347)

* Fix whitespace.

* Fix post sign.

* Fix message.

* Fix tests.

* Rest of the problems.

* All hail the linter and its omniscience.

* ...and its divine omniscience.

* Grumbles and wording.

* Make signing compatible with geth. (#4468)
This commit is contained in:
Tomasz Drwięga
2017-02-08 10:40:42 +01:00
committed by Arkadiy Paronyan
parent 2bfcfd3813
commit 8c049e5d05
16 changed files with 100 additions and 54 deletions

View File

@@ -313,6 +313,11 @@ export default class Parity {
.execute('parity_postTransaction', inOptions(options));
}
postSign (from, message) {
return this._transport
.execute('parity_postSign', from, message);
}
registryAddress () {
return this._transport
.execute('parity_registryAddress')