aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth/retesteth.go
Commit message (Collapse)AuthorAgeFilesLines
* core: remove unused gas return in ApplyTransaction (#20065)Rob Mulholand2019-09-131-1/+1
|
* retesteth: enable maxResults in AccountRange (#20020)winsvega2019-09-021-1/+1
|
* retesteth: implement istanbul supportMartin Holst Swende2019-08-231-0/+7
|
* cmd, contracts, eth, p2p, signer, whisper: fixed ineffectual assignments ↵Christian Muehlhaeuser2019-07-221-3/+3
| | | | | (#19869) Fixed assigning values to variables we don't end up using.
* cmd/geth, core/rawdb: add missing error checks (#19871)Christian Muehlhaeuser2019-07-221-0/+3
| | | | | | | | * Added missing error checks Add error handling where we assign err a value, but don't check for it being nil. * core/rawdb: tiny style nit
* eth: add debug_accountRange (#17438)jwasinger2019-07-131-2/+2
| | | | This adds the debug_accountRange method which returns all accounts in the state for a given block and transaction index.
* cmd: Add retesteth command (to support execution and generation of tests via ↵ledgerwatch2019-06-051-0/+888
retesteth) (#19631) * Add retesteth command * Remove label and insert full version * mineBlock - break the inner loop when the block is full * Fixes for touched non-reward accounts, gas limit issues * Not fail when SendTx has transaction with incorrect RLP * Fix linter (unnecessary conversion) * retesteth: add usage string to flag