Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | common/compiler: simplify solc wrapper | Felix Lange | 2016-08-17 | 3 | -73/+90 |
| | | | | | | | | | | | | | Support for legacy version 0.9.x is gone. The compiler version is no longer cached. Compilation results (and the version) are read directly from stdout using the --combined-json flag. As a workaround for ethereum/solidity#651, source code is written to a temporary file before compilation. Integration of solc in package ethapi and cmd/abigen is now much simpler because the compiler wrapper is no longer passed around as a pointer. Fixes #2806, accidentally | ||||
* | Merge pull request #2740 from Firescar96/removepeer | Felix Lange | 2016-07-29 | 1 | -0/+5 |
|\ | | | | | node, p2p, internal: Add ability to remove peers via admin interface | ||||
| * | node, p2p, internal: Add ability to remove peers via admin interface | Firescar96 | 2016-07-15 | 1 | -0/+5 |
| | | |||||
* | | rpc: add new client, use it everywhere | Felix Lange | 2016-07-23 | 1 | -1/+1 |
| | | | | | | | | | | | | The new client implementation supports concurrent requests, subscriptions and replaces the various ad hoc RPC clients throughout go-ethereum. | ||||
* | | eth/api: rename signAndSendTransaction to sendTransaction | Bas van Kervel | 2016-07-22 | 2 | -4/+10 |
| | | |||||
* | | core: added CheckNonce() to Message interface | zsfelfoldi | 2016-07-11 | 1 | -2/+2 |
| | | |||||
* | | Merge pull request #2159 from zsfelfoldi/light-backend | Péter Szilágyi | 2016-06-30 | 2 | -0/+1661 |
|\ \ | |/ |/| | eth: separate common and full node-specific API and backend service | ||||
| * | eth: separate common and full node-specific API and backend service | zsfelfoldi | 2016-06-16 | 2 | -0/+1661 |
| | | |||||
* | | web3ext: Remove old natspec Admin_JS stubs | Justin Clark-Casey | 2016-06-24 | 1 | -15/+0 |
| | | | | | | | | This stops them from showing up on the javascript console. | ||||
* | | build: add ci.go, use it everywhere | Felix Lange | 2016-06-22 | 2 | -0/+299 |
|/ | | | | | | The new build script, ci.go, replaces some of the older shell scripts. ci.go can compile go-ethereum, run the tests, create release archives and debian source packages. | ||||
* | cmd/geth: codegansta/cli package renamed to urfave/cli | Bas van Kervel | 2016-06-09 | 1 | -1/+1 |
| | |||||
* | internal/jsre: ensure Stop can be called more than once | Felix Lange | 2016-06-03 | 1 | -7/+9 |
| | | | | This makes "geth js file.js" terminate again. | ||||
* | console, internal/jsre: colorize JavaScript exceptions too | Péter Szilágyi | 2016-05-30 | 2 | -2/+20 |
| | |||||
* | cmd, console: split off the console into a reusable package | Péter Szilágyi | 2016-05-30 | 7 | -0/+16874 |
| | |||||
* | eth: add new RPC method (personal.) SignAndSendTransaction | Bas van Kervel | 2016-05-20 | 1 | -0/+6 |
| | |||||
* | cmd/geth, internal/web3ext, rpc: surface rpc module, fix shh, fix miner | Péter Szilágyi | 2016-05-11 | 1 | -116/+131 |
| | |||||
* | internal/debug: also rename debug_startTrace to debug_startGoTrace | Felix Lange | 2016-05-06 | 5 | -14/+14 |
| | | | | This was missing from the previous change. | ||||
* | internal/debug: rename debug_trace to debug_goTrace | Felix Lange | 2016-05-06 | 2 | -4/+4 |
| | | | | Reduces confusion with EVM execution tracing methods. | ||||
* | eth: add personal_importRawKey for runtime private key import | Ales Katona | 2016-04-28 | 1 | -6/+21 |
| | |||||
* | rpc: move web3.js extensions to internal/web3ext | Felix Lange | 2016-04-15 | 1 | -0/+463 |
| | |||||
* | internal/debug: add memStats and gcStats to API | Felix Lange | 2016-04-13 | 1 | -0/+15 |
| | |||||
* | cmd/utils, internal/debug: show all stacks for 10x Ctrl-C induced panic | Felix Lange | 2016-03-12 | 2 | -0/+51 |
| | | | | | Go 1.6 only prints stacks for the current goroutine by default, but for this panic we want to see all of them. | ||||
* | internal/debug: don't disable heap profile collection by default | Felix Lange | 2016-03-12 | 1 | -0/+1 |
| | | | | | Setting runtime.MemProfileRate to 0 through the flag default value makes it impossible to get an 'in-use' profile. | ||||
* | internal/debug: APIs for profiling and tracing | Felix Lange | 2016-01-28 | 4 | -0/+404 |
The debug package provides an RPC wrapper for glog settings and the debugging facilities of the Go runtime. They can be triggered through both command line flags and the IPC listener. |