Last active
December 15, 2015 06:04
-
-
Save matiasinsaurralde/9914919746ad818ad53a to your computer and use it in GitHub Desktop.
ethereum-mining-internals
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
web3.eth.getWork() | |
["0x5e1994ba8aa49c2789ef0823fd0402ce396055661b9fe4e3b686a64c1f996482", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x00002334df66437efb5203e24f3d4a263c3dd649b179e4f423d95a69f5425090"] | |
// web3.eth.getWork() retorna tres valores: Header-Hash, SeedHash y Target | |
https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_getwork | |
ℹ 02:06:53.217| Solution found; Submitting to http://127.0.0.1:8545 ... | |
ℹ 02:06:53.217| Nonce: 59585cd341e28d69 | |
ℹ 02:06:53.217| Mixhash: e192c6ba566a1e43c39fc847b7879098bbb6cf4bc32f96fb2378dde886bd1d00 | |
ℹ 02:06:53.218| Header-hash: 5e1994ba8aa49c2789ef0823fd0402ce396055661b9fe4e3b686a64c1f996482 | |
ℹ 02:06:53.218| Seedhash: 0000000000000000000000000000000000000000000000000000000000000000 | |
ℹ 02:06:53.218| Target: 00002334df66437efb5203e24f3d4a263c3dd649b179e4f423d95a69f5425090 | |
ℹ 02:06:53.218| Ethash: 000011689eee034622c793d9f71211cb6d460d3f9472f623226cb497b86bae29 | |
ℹ 02:06:53.219| B-) Submitted and accepted. | |
ℹ 02:06:53.838| Solution found; Submitting to http://127.0.0.1:8545 ... | |
ℹ 02:06:53.838| Nonce: b68e9b42ecee7d31 | |
ℹ 02:06:53.838| Mixhash: 7b2f243f6ad88fad08ab155766796877c0246fa01adf9298fa496f10d69d0cea | |
ℹ 02:06:53.839| Header-hash: 5e1994ba8aa49c2789ef0823fd0402ce396055661b9fe4e3b686a64c1f996482 | |
ℹ 02:06:53.839| Seedhash: 0000000000000000000000000000000000000000000000000000000000000000 | |
ℹ 02:06:53.839| Target: 00002334df66437efb5203e24f3d4a263c3dd649b179e4f423d95a69f5425090 | |
ℹ 02:06:53.839| Ethash: 0000219dc6a88c574215a331c18cd8196686bc3bdd867567b29e870f00d2d810 | |
✘ 02:06:53.840| :-( Not accepted. | |
ℹ 02:06:54.950| Solution found; Submitting to http://127.0.0.1:8545 ... | |
ℹ 02:06:54.950| Nonce: 65188d34e08e0747 | |
ℹ 02:06:54.950| Mixhash: 513a25bc1853cbffde876bae7482c9f0932378f823287db9c6c86b2b5eb8298e | |
ℹ 02:06:54.950| Header-hash: 5e1994ba8aa49c2789ef0823fd0402ce396055661b9fe4e3b686a64c1f996482 | |
ℹ 02:06:54.951| Seedhash: 0000000000000000000000000000000000000000000000000000000000000000 | |
ℹ 02:06:54.951| Target: 00002334df66437efb5203e24f3d4a263c3dd649b179e4f423d95a69f5425090 | |
ℹ 02:06:54.951| Ethash: 000020584d7d35510ae963061d74dbbe7e8dcd9cc4f4541eeebc19566740efcc | |
ℹ 02:06:54.952| B-) Submitted and accepted. | |
eth_submitWork ["0x7aedbf18de958881","0x5e1994ba8aa49c2789ef0823fd0402ce396055661b9fe4e3b686a64c1f996482","0x65e31aa50d11674b5a9b2cc4832561ecee9edf2002670d1bc8eecfbfbba1b0a8"] | |
eth_submitWork ["0x4b422e1a705fd683","0x5e1994ba8aa49c2789ef0823fd0402ce396055661b9fe4e3b686a64c1f996482","0xbcfb8f1e8bdc1606e6bdc667ccbe2f3c11291ca37113cfae2ab8dc4cb4ee7266"] | |
https://github.com/ethereum/wiki/wiki/Ethash | |
https://github.com/ethereum/ethereumjs-lib | |
https://github.com/ethereum/node-ethereum | |
https://github.com/ethereumjs/ethashjs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment