Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rebrand as tangerine-network/go-tangerine | Wei-Ning Huang | 2019-09-17 | 1 | -3/+3 |
| | |||||
* | Change import go github.com/dexon-foundation/dexon | Wei-Ning Huang | 2019-06-12 | 1 | -3/+3 |
| | |||||
* | console: squash golint warnings (#16836) | kiel barry | 2018-05-31 | 1 | -2/+2 |
| | |||||
* | all: fix various typos (#16533) | Wuxiang | 2018-04-19 | 1 | -1/+1 |
| | | | | | | | | * fix typo * fix typo * fix typo | ||||
* | console: use keypad based pinpad (Trezor request) | Péter Szilágyi | 2017-08-14 | 1 | -8/+3 |
| | |||||
* | accounts, console, internal: support trezor hardware wallet | Péter Szilágyi | 2017-08-09 | 1 | -0/+49 |
| | |||||
* | console: avoid float64 when remarshaling parameters | Felix Lange | 2017-05-02 | 1 | -3/+6 |
| | | | | | | With Go 1.7, encoding/json marshals float64 using scientific notation ("10e+6"), but Go's int and *big.Int decoders don't accept such numbers. This change disables use of float64 to avoid the problem. | ||||
* | 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 |