Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | miner: fix typo | terasum | 2017-10-12 | 1 | -1/+1 |
| | |||||
* | miner: fix megacheck warnings | Egon Elbre | 2017-08-07 | 1 | -2/+3 |
| | |||||
* | core, consensus: pluggable consensus engines (#3817) | Péter Szilágyi | 2017-04-05 | 1 | -13/+20 |
| | | | | | This commit adds pluggable consensus engines to go-ethereum. In short, it introduces a generic consensus interface, and refactors the entire codebase to use this interface. | ||||
* | all: swap out the C++ ethash to the pure Go one (mining todo) | Péter Szilágyi | 2017-03-09 | 1 | -4/+3 |
| | |||||
* | all: blidly swap out glog to our log15, logs need rework | Péter Szilágyi | 2017-02-23 | 1 | -4/+4 |
| | |||||
* | eth: accept leading zeros for nonce parameter of submitWork (#3558) | Felix Lange | 2017-01-13 | 1 | -1/+2 |
| | |||||
* | eth, miner: verify PoW in the remote agent to notify submitter (#3438) | Péter Szilágyi | 2016-12-20 | 1 | -12/+21 |
| | |||||
* | miner: fix a race between remote agent start/loop | Péter Szilágyi | 2016-12-13 | 1 | -11/+14 |
| | |||||
* | miner: synchronise start / stop | Jeffrey Wilcke | 2015-10-31 | 1 | -5/+12 |
| | | | | | | This PR fixes an issue where the remote worker was stopped twice and not properly handled. This adds a synchronised running check to the start and stop methods preventing closing of a channel more than once. | ||||
* | cmd/utils, rpc/comms: stop XEth when IPC connection ends | Felix Lange | 2015-10-30 | 1 | -5/+10 |
| | | | | | | | | | | | There are a bunch of changes required to make this work: - in miner: allow unregistering agents, fix RemoteAgent.Stop - in eth/filters: make FilterSystem.Stop not crash - in rpc/comms: move listen loop to platform-independent code Fixes #1930. I ran the shell loop there for a few minutes and didn't see any changes in the memory profile. | ||||
* | Improve error string and remove unneeded else clause | Gustav Simonsson | 2015-08-28 | 1 | -2/+1 |
| | |||||
* | rpc: return error code for eth_getWork when no work ready | Gustav Simonsson | 2015-08-26 | 1 | -3/+5 |
| | |||||
* | miner, rpc: added submit hashrate for remote agents | Jeffrey Wilcke | 2015-08-06 | 1 | -2/+35 |
| | |||||
* | all: fix license headers one more time | Felix Lange | 2015-07-24 | 1 | -1/+1 |
| | | | | I forgot to update one instance of "go-ethereum" in commit 3f047be5a. | ||||
* | all: update license headers to distiguish GPL/LGPL | Felix Lange | 2015-07-23 | 1 | -4/+4 |
| | | | | | All code outside of cmd/ is licensed as LGPL. The headers now reflect this by calling the whole work "the go-ethereum library". | ||||
* | miner: smart mining | Jeffrey Wilcke | 2015-07-16 | 1 | -33/+63 |
| | | | | | | | | | Work is now handled and carried over multiple sessions. Previously one session only was assumed, potentially resulting in invalid (outdated) work * Larger work / result queue * Full validation option | ||||
* | all: update license information | Felix Lange | 2015-07-07 | 1 | -0/+16 |
| | |||||
* | core/types: make blocks immutable | Felix Lange | 2015-06-30 | 1 | -3/+1 |
| | |||||
* | Return 32-byte hashes from GetWork | Taylor Gerring | 2015-05-11 | 1 | -2/+2 |
| | | | | Ensures that the Get Work results are a consistent length. Closes #917 | ||||
* | miner: go fmt | obscuren | 2015-04-20 | 1 | -8/+7 |
| | |||||
* | Switched getWork third output from difficulty to target | Vitalik Buterin | 2015-04-20 | 1 | -1/+8 |
| | |||||
* | miner: fixed remote miner current work | obscuren | 2015-04-20 | 1 | -1/+2 |
| | |||||
* | Fixed miner | obscuren | 2015-03-27 | 1 | -0/+1 |
| | | | | * Miners could stall because the worker wasn't aware the miner was done | ||||
* | Changed miner | obscuren | 2015-03-24 | 1 | -4/+7 |
| | | | | | * Instead of delivering `Work` to the `Worker`, push a complete Block to the `Worker` so that each agent can work on their own block. | ||||
* | Fixed issues with stalled remote miner | obscuren | 2015-03-23 | 1 | -1/+1 |
| | |||||
* | Move RemoteAgent to miner pkg | Taylor Gerring | 2015-03-23 | 1 | -0/+81 |