This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
EthMiner crate #653
Closed
Closed
EthMiner crate #653
Changes from 43 commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
99a6802
Moving block sealing and transaction_queue to separate create
84444c6
Adding ethminer to dev/ci files
9acb36a
Fixing tests compilation. Removing ethminer dependency on client
49f1834
Fixing travis yml whitespace
5db84c3
Adding transactions to block
9d66433
Tratifying Miner
363de97
Adding documentation and ditching EthMiner
493c61f
Minimal gas price threshold. Closes: #636
3d74e5b
Fixing doctest
3c0587b
Merge branch 'ethminer_crate' into tx_queue_min_gas
2f9b955
Merge branch 'master' into ethminer_crate
ca2cf8e
Lowering minimal gas price
02b7e76
Breaking couple of lines to keep number of characters below limit
90ae750
Update main.rs
gavofyork cd37fa7
Merge pull request #640 from ethcore/tx_queue_min_gas
gavofyork 2e72173
Merge branch 'master' into ethminer_crate
eb1fab9
Adding clippy support to ethminer.
0535fb3
Merge branch 'master' into ethminer_crate
9db4720
Fixing clippy warnings.
9ea3c0e
Fixing compilation on beta & stable
9741d48
Transaction data associated with polls.
c37370a
PendingTransaction filter.
92022ac
Merge branch 'master' into ethminer_crate
0eaf0a8
Updating hook.
3bbdc03
Fixing doctest.
5b204a5
Merge branch 'master' into ethminer_crate
55a14b3
Fixing transaction queue test
2fd036b
Merge branch 'ethminer_crate' into rpc_pending_filter
dd2fb4d
Storing BlockNumber & transactions directly in enum
03da6c9
Merge branch 'master' into ethminer_crate
197ea7f
Using miner in rpc instead of sync
36ff65d
Fixing warnings
b458452
TestSyncProvider fixes
9c92d60
Merge branch 'master' into ethminer_crate
0dbe668
adding std::mem
9f19d29
Merge branch 'master' into ethminer_crate
c3a79c1
Merge branch 'master' into ethminer_crate
fadbc61
Merge branch 'ethminer_crate' into rpc_pending_filter
cd835e8
Merge pull request #661 from ethcore/rpc_pending_filter
debris 7cfe1d2
Adding more detailed logging
05ff8a0
Merge branch 'ethminer_crate' of github.com:ethcore/parity into ethmi…
aebc91d
Merge branch 'master' into ethminer_crate
3ea52c2
Merge branch 'master' into ethminer_crate
9424d53
Update lib.rs
gavofyork 65dadcc
Adding todos
e1c0177
Update main.rs
gavofyork 89986ec
Update main.rs
gavofyork e85a2f3
Update main.rs
gavofyork e7574d4
Update lib.rs
gavofyork File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
#!/bin/sh | ||
# generate documentation only for partiy and ethcore libraries | ||
|
||
cargo doc --no-deps --verbose -p ethash -p ethcore-util -p ethcore -p ethsync -p ethcore-rpc -p parity | ||
cargo doc --no-deps --verbose \ | ||
-p ethash \ | ||
-p ethcore-util \ | ||
-p ethcore \ | ||
-p ethsync \ | ||
-p ethcore-rpc \ | ||
-p parity \ | ||
-p ethminer |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will be nice to move this function into the ethminer crate eventually - that can happen in civility though.