Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | all: next batch of log polishes to contextual versions | Péter Szilágyi | 2017-02-28 | 1 | -1/+1 |
| | |||||
* | all: blidly swap out glog to our log15, logs need rework | Péter Szilágyi | 2017-02-23 | 1 | -3/+2 |
| | |||||
* | console: fix error message in faux JSON-RPC responses | Felix Lange | 2017-01-08 | 1 | -12/+5 |
| | | | | | The message was used as both key and value in the error object. This only affected unusual errors with no error code. | ||||
* | all: fix spelling errors | Péter Szilágyi | 2017-01-07 | 1 | -4/+4 |
| | |||||
* | all: update license information | Felix Lange | 2016-11-09 | 1 | -1/+1 |
| | |||||
* | internal/ethapi: add personal_sign and fix eth_sign to hash message (#2940) | bas-vk | 2016-10-29 | 1 | -0/+38 |
| | | | | | | | | | | | | | | | | | | | | This commit includes several API changes: - The behavior of eth_sign is changed. It now accepts an arbitrary message, prepends the well-known string \x19Ethereum Signed Message:\n<length of message> hashes the result using keccak256 and calculates the signature of the hash. This breaks backwards compatability! - personal_sign(hash, address [, password]) is added. It has the same semantics as eth_sign but also accepts a password. The private key used to sign the hash is temporarily unlocked in the scope of the request. - personal_recover(message, signature) is added and returns the address for the account that created a signature. | ||||
* | console: fix return via callbacks (#2910) | cdetrio | 2016-08-16 | 1 | -2/+2 |
| | | | Fixes #2872 | ||||
* | rpc: add new client, use it everywhere | Felix Lange | 2016-07-23 | 1 | -105/+69 |
| | | | | | | The new client implementation supports concurrent requests, subscriptions and replaces the various ad hoc RPC clients throughout go-ethereum. | ||||
* | cmd, console: split off the console into a reusable package | Péter Szilágyi | 2016-05-30 | 1 | -0/+317 |