aboutsummaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* core/vm: fix typos in jump_table.goJay Guo2017-11-141-2/+2
|
* build: enable unconvert linter (#15456)ferhat elmas2017-11-111-2/+2
| | | | | | | | | * build: enable unconvert linter - fixes #15453 - update code base for failing cases * cmd/puppeth: replace syscall.Stdin with os.Stdin.Fd() for unconvert linter
* all: gofmt -w -s (#15419)ferhat elmas2017-11-085-21/+21
|
* core: respect price bump threshold (#15401)Jim McDonald2017-10-302-11/+14
| | | | | | | | | | * core: allow price bump at threshold * core: test changes to allow price bump at threshold * core: reinstate tx replacement test underneath threshold * core: minor test failure message cleanups
* core, swarm: typo fixesferhat elmas2017-10-301-1/+1
|
* les, core/bloombits: post-LES/2 fixes (#15391)Felföldi Zsolt2017-10-271-1/+4
| | | | | | * les: fix topic ID * core/bloombits: fix interface conversion
* core, eth, les: fix messy code (#15367)Péter Szilágyi2017-10-255-148/+99
| | | | | | | | * core, eth, les: fix messy code * les: fixed tx status test and rlp encoding * core: add a workaround for light sync
* les, light: LES/2 protocol version (#14970)Felföldi Zsolt2017-10-247-65/+199
| | | | | | | | | | | | | | | | | | This PR implements the new LES protocol version extensions: * new and more efficient Merkle proofs reply format (when replying to a multiple Merkle proofs request, we just send a single set of trie nodes containing all necessary nodes) * BBT (BloomBitsTrie) works similarly to the existing CHT and contains the bloombits search data to speed up log searches * GetTxStatusMsg returns the inclusion position or the pending/queued/unknown state of a transaction referenced by hash * an optional signature of new block data (number/hash/td) can be included in AnnounceMsg to provide an option for "very light clients" (mobile/embedded devices) to skip expensive Ethash check and accept multiple signatures of somewhat trusted servers (still a lot better than trusting a single server completely and retrieving everything through RPC). The new client mode is not implemented in this PR, just the protocol extension.
* cmd, consensus, core, miner: instatx clique for --dev (#15323)Péter Szilágyi2017-10-244-13/+28
| | | | | | | | * cmd, consensus, core, miner: instatx clique for --dev * cmd, consensus, clique: support configurable --dev block times * cmd, core: allow --dev to use persistent storage too
* core: avoid warning when loading the transaction journalPéter Szilágyi2017-10-201-0/+13
|
* core: fire tx event on replace, expand testsPéter Szilágyi2017-10-203-4/+191
|
* core/vm: check opcode stack before readonly enforcementPéter Szilágyi2017-10-141-13/+10
|
* core/types: fix test for TransactionsByPriceAndNonceJim McDonald2017-10-111-6/+6
|
* core: revert invalid block dedup code (#15235)Péter Szilágyi2017-10-041-5/+0
|
* core/types, internal: swap Receipt.Failed to StatusPéter Szilágyi2017-10-023-20/+34
|
* ethclient, mobile: add TransactionSender (#15127)Felix Lange2017-10-013-126/+67
| | | | | | | | | | | | | | | | | * core/types: make Signer derive address instead of public key There are two reasons to do this now: The upcoming ethclient signer doesn't know the public key, just the address. EIP 208 will introduce a new signer which derives the 'entry point' address for transactions with zero signature. The entry point has no public key. Other changes to the interface ease the path make to moving signature crypto out of core/types later. * ethclient, mobile: add TransactionSender The new method can get the right signer without any crypto, and without knowledge of the signature scheme that was used when the transaction was included.
* core/bloombits, eth/filters: handle null topics (#15195)Péter Szilágyi2017-09-272-2/+42
| | | | | | | | | | When implementing the new bloombits based filter, I've accidentally broke null topics by removing the special casing of common.Hash{} filter rules, which acted as the wildcard topic until now. This PR fixes the regression, but instead of using the magic hash common.Hash{} as the null wildcard, the PR reworks the code to handle nil topics during parsing, converting a JSON null into nil []common.Hash topic.
* Merge pull request #15181 from fjl/state-revert-log-indexPéter Szilágyi2017-09-261-0/+1
|\ | | | | core/state: revert log index when removing logs
| * core/state: revert log index when removing logsFelix Lange2017-09-221-0/+1
| |
* | core/vm: standard vm traces (#15035)cdetrio2017-09-221-3/+19
|/
* params: enable Byzantium on Ropsten/tests, fix failuresPéter Szilágyi2017-09-142-15/+23
|
* params: Updated finalized gascosts for ECMUL/MODEXP (#15135)Martin Holst Swende2017-09-141-3/+3
| | | | | | | | | | | | * params: Updated finalized gascosts for ECMUL/MODEXP * core,tests: Updates pending new tests * tests: Updated with new tests * core: revert state transition bugfix * tests: Add expected failures due to #15119
* consensus, core, params: rebrand Metro to ByzantiumPéter Szilágyi2017-09-148-21/+21
|
* core: only fire one chain head per batch (#15123)Péter Szilágyi2017-09-112-22/+33
| | | | | | * core: only fire one chain head per batch * miner: announce chan events synchronously
* core, eth/downloader: commit block data using batches (#15115)Felix Lange2017-09-104-199/+133
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * ethdb: add Putter interface and Has method * ethdb: improve docs and add IdealBatchSize * ethdb: remove memory batch lock Batches are not safe for concurrent use. * core: use ethdb.Putter for Write* functions This covers the easy cases. * core/state: simplify StateSync * trie: optimize local node check * ethdb: add ValueSize to Batch * core: optimize HasHeader check This avoids one random database read get the block number. For many uses of HasHeader, the expectation is that it's actually there. Using Has avoids a load + decode of the value. * core: write fast sync block data in batches Collect writes into batches up to the ideal size instead of issuing many small, concurrent writes. * eth/downloader: commit larger state batches Collect nodes into a batch up to the ideal size instead of committing whenever a node is received. * core: optimize HasBlock check This avoids a random database read to get the number. * core: use numberCache in HasHeader numberCache has higher capacity, increasing the odds of finding the header without a database lookup. * core: write imported block data using a batch Restore batch writes of state and add blocks, tx entries, receipts to the same batch. The change also simplifies the miner. This commit also removes posting of logs when a forked block is imported. * core: fix DB write error handling * ethdb: use RLock for Has * core: fix HasBlock comment
* core/types, miner: avoid tx sender miscaching (#14773)Mark2017-09-082-11/+13
|
* core/asm: use ContainsRune instead of IndexRune (#15098)Fiisio2017-09-081-3/+3
|
* core: delete dao.go (#15113)Pawan Singh Pal2017-09-081-75/+0
| | | | - dao.go is already present in consensus/misc - core/dao.go is not used anywhere in the codebase
* Merge pull request #14631 from zsfelfoldi/bloombits2Péter Szilágyi2017-09-0613-236/+1441
|\ | | | | core/bloombits, eth/filter: transformed bloom bitmap based log search
| * core/bloombits: drop nil-matcher special casePéter Szilágyi2017-09-062-10/+7
| |
| * core/bloombits: use general filters instead of addresses and topicsZsolt Felfoldi2017-09-062-45/+15
| |
| * core/bloombits: AddBloom index parameter and fixes variable namesZsolt Felfoldi2017-09-062-6/+9
| |
| * core, eth: clean up bloom filtering, add some testsPéter Szilágyi2017-09-0613-817/+1206
| |
| * core, eth: add bloombit indexer, filter based on itZsolt Felfoldi2017-09-0610-191/+1037
| |
* | core: use blocks and avoid deep reorgs in txpoolPéter Szilágyi2017-09-062-45/+55
|/
* core: make txpool operate on immutable statePéter Szilágyi2017-09-056-290/+219
|
* core/vm: Make MaxCodesize non-retroactive (#15072)Martin Holst Swende2017-09-041-1/+1
| | | | | | * core/vm: Make max_codesize only applicable post Spurious Dragon/158/155/161/170 * tests: Remove expected failure
* core: Fix flaw where underpriced locals were removed (#15081)Martin Holst Swende2017-09-042-1/+62
| | | | | | * core: Fix flaw where underpriced locals were removed * core: minor code cleanups for tx pool tests
* core/vm: avoid state lookup during gas calc for call (#15061)Martin Holst Swende2017-09-041-1/+1
|
* core/vm: renamed struct member + go fmtMartin Holst Swende2017-08-281-71/+71
|
* core/vm: Fix testcase input for ecmulMartin Holst Swende2017-08-281-2/+2
|
* core/vm: more benchmarksMartin Holst Swende2017-08-271-0/+76
|
* core, tests: implement Metropolis EIP 684Péter Szilágyi2017-08-252-8/+17
|
* Merge pull request #15028 from karalabe/metropolis-iceagePéter Szilágyi2017-08-252-7/+3
|\ | | | | consensus, core, tests: implement Metropolis EIP 649
| * consensus, core, tests: implement Metropolis EIP 649Péter Szilágyi2017-08-242-7/+3
| |
* | core/types: encode receipt status in PostState fieldFelix Lange2017-08-252-83/+62
| | | | | | | | | | | | | | This fixes a regression where the new Failed field in ReceiptForStorage rejected previously stored receipts. Fix it by removing the new field and store status in the PostState field. This also removes massive RLP hackery around the status field.
* | core/types: fix create indicator in Transaction.String (#15025)nkbai2017-08-241-1/+1
| |
* | core/state: revert metro suicide map addition (#15024)Péter Szilágyi2017-08-243-48/+28
|/
* Merge pull request #15014 from rjl493456442/metropolis-eip658Péter Szilágyi2017-08-237-31/+61
|\ | | | | core: add status as a consensus field in receipt
| * core/types: reject Metro receipts with > 0x01 status bytesPéter Szilágyi2017-08-231-4/+11
| |
| * core: implement Metropolis EIP 658, receipt status byterjl4934564422017-08-227-31/+54
| |
* | cmd/evm, core/vm, internal/ethapi: Show error when exiting (#14985)Martin Holst Swende2017-08-231-2/+5
|/ | | | | | * cmd/evm, core/vm, internal/ethapi: Add 'err' to tracer interface CaptureEnd * cmd/evm: fix nullpointer when there is no error
* core/vm: fix typo in method documentation (#15019)Ti Zhou2017-08-221-1/+1
| | | Signed-off-by: Ti Zhou <tizhou1986@gmail.com>
* Merge pull request #14983 from karalabe/metropolis-revertPéter Szilágyi2017-08-217-42/+70
|\ | | | | core/vm: implement REVERT metropolis opcode
| * core/vm: rework reversion to work on a higher levelPéter Szilágyi2017-08-176-45/+53
| |
| * core/vm: implement REVERT metropolis opcodeJeffrey Wilcke2017-08-164-1/+21
| |
* | core, light: send chain events using event.Feed (#14865)Miya Chen2017-08-1810-182/+289
| |
* | core/vm, crypto/bn256: fix bn256 use and pairing corner casePéter Szilágyi2017-08-172-9/+69
|/
* core/vm: polish RETURNDATA, add missing returns to CALL*Péter Szilágyi2017-08-167-72/+75
|
* core/vm: implement RETURNDATA metropolis opcodesJeffrey Wilcke2017-08-166-171/+253
|
* core/vm: minor polishes, fix STATICCALL for precompilesPéter Szilágyi2017-08-152-37/+33
| | | | | | * Fix STATICCALL so it is able to call precompiles too * Fix write detection to use the correct value argument of CALL * Fix write protection to ignore the value in CALLCODE
* core/vm: implement metropolis static call opcodeJeffrey Wilcke2017-08-157-3/+153
|
* core/vm: optimize copy-less data retrievalsPéter Szilágyi2017-08-144-54/+75
|
* core/vm: benchmarking of metro precompilesMartin Holst Swende2017-08-142-206/+341
|
* core/vm: polish precompile contract code, add tests and benchesPéter Szilágyi2017-08-144-196/+355
| | | | | * Update modexp gas calculation to new version * Fix modexp modulo 0 special case to return zero
* core: add Metropolis pre-compiles (EIP 197, 198 and 213)Jeffrey Wilcke2017-08-113-2/+242
|
* core/vm/runtime: remove unused state parameter to NewEnv (#14953)Joel Burget2017-08-112-5/+4
| | | | | | | | * core: Remove unused `state` parameter to `NewEnv`. `cfg.State` is used instead. * core/vm/runtime: remove unused import
* Merge pull request #14522 from ethereum/go-ethereum/chainproc2Felix Lange2017-08-082-0/+630
|\
| * core: polish chain indexer a bitPéter Szilágyi2017-08-072-302/+403
| |
| * core: implement ChainIndexerZsolt Felfoldi2017-08-072-0/+529
| |
* | core: fix txpool journal and test racesPéter Szilágyi2017-08-082-30/+43
|/
* core: fix blockchain goroutine leaks in testsPéter Szilágyi2017-08-078-23/+79
|
* core: bump timeout test to avoid flakyness on overloaded ciPéter Szilágyi2017-08-071-2/+2
|
* core/vm: fix typo in comment (#14894)evgk2017-08-041-1/+1
|
* core/asm: fix hex number lexing (#14861)njupt-moon2017-07-312-6/+41
|
* core: avoid write existing block again (#14849)Mark2017-07-311-0/+5
|
* cmd, core, eth: journal local transactions to disk (#14784)Péter Szilágyi2017-07-283-82/+392
| | | | | | | | | | * core: reduce txpool event loop goroutines and sync structs * cmd, core, eth: journal local transactions to disk * core: journal replacement pending transactions too * core: separate transaction journal from pool
* core/vm/runtime: fix evm command to use --gasprice flag valuecdetrio2017-07-261-1/+1
|
* core/vm: remove logging and add section labels to struct logs (#14782)Felix Lange2017-07-193-23/+16
|
* Merge pull request #14733 from karalabe/metro-eip100Péter Szilágyi2017-07-171-0/+1
|\ | | | | consensus/ethash, core: implement Metropolis EIP 100
| * consensus, core: EIP 100 polishes, fix chain maker diffPéter Szilágyi2017-06-301-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | This PR polishes the EIP 100 difficulty adjustment algorithm to match the same mechanisms as the Homestead was implemented to keep the code uniform. It also avoids a few memory allocs by reusing big1 and big2, pulling it out of the common package and into ethash. The commit also fixes chain maker to forward the uncle hash when creating a simulated chain (it wasn't needed until now so we just skipped a copy there).
* | core, ethclient: implement Metropolis EIP 98 (#14750)Péter Szilágyi2017-07-173-18/+76
| | | | | | Implements ethereum/EIPs#98
* | core: blocknumber in genesis as hex (#14812)Martin Holst Swende2017-07-172-6/+5
| |
* | core: remove redundant storage of transactions and receipts (#14801)Péter Szilágyi2017-07-154-211/+98
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * core: remove redundant storage of transactions and receipts * core, eth, internal: new transaction schema usage polishes * eth: implement upgrade mechanism for db deduplication * core, eth: drop old sequential key db upgrader * eth: close last iterator on successful db upgrage * core: prefix the lookup entries to make their purpose clearer
* | tests: update tests and implement general state tests (#14734)Felix Lange2017-07-113-24/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Tests are now included as a submodule. This should make updating easier and removes ~60MB of JSON data from the working copy. State tests are replaced by General State Tests, which run the same test with multiple fork configurations. With the new test runner, consensus tests are run as subtests by walking json files. Many hex issues have been fixed upstream since the last update and most custom parsing code is replaced by existing JSON hex types. Tests can now be marked as 'expected failures', ensuring that fixes for those tests will trigger an update to test configuration. The new test runner also supports parallel execution and the -short flag.
* | Merge pull request #14737 from holiman/txpool_localaccountsPéter Szilágyi2017-07-103-251/+371
|\ \ | | | | | | Txpool localaccounts
| * | core: test locals support in txpool queue limits, fixPéter Szilágyi2017-07-063-83/+197
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The commit reworks the transaction pool queue limitation tests to cater for testing local accounts, also testing the nolocal flag. In addition, it also fixes a panic if local transactions exceeded the global queue allowance (no accounts left to drop from) and also fixes queue eviction to operate on all accounts, not just the one being updated.
| * | core: handle nolocals during add, exepmt locals from expirationPéter Szilágyi2017-07-051-4/+9
| | |
| * | cmd, core: add --txpool.nolocals to disable local price exemptionsPéter Szilágyi2017-07-051-2/+4
| | |
| * | core, eth, les: polish txpool API around local/remote txsPéter Szilágyi2017-07-053-138/+143
| | |
| * | core: Prevent local tx:s from being discardedMartin Holst Swende2017-07-011-7/+12
| | |
| * | core: Change local-handling to use sender-account instead of tx hashesMartin Holst Swende2017-07-012-59/+48
| |/
* | core: fix typo in error message (#14763)ligi2017-07-061-1/+1
| |
* | params: remove redundant consts, disable metro on AllProtocolChangesPéter Szilágyi2017-07-042-11/+11
|/
* core: fix an off-by-one when the block import counts blocksMartin Holst Swende2017-06-291-1/+1
|
* Merge pull request #14718 from holiman/gascalc_fixPéter Szilágyi2017-06-282-17/+17
|\ | | | | core/vm: fix overflow in gas calculation formula
| * core/vm : fix testcase for gas calculationMartin Holst Swende2017-06-281-11/+7
| |
| * core/vm: fix overflow in gas calculation formulaMartin Holst Swende2017-06-281-6/+10
| |
* | core/vm: add benchmarks for some ops and precompiles (#14641)Martin Holst Swende2017-06-281-0/+242
|/
* core/state: access trie through Database interface, track errors (#14589)Felix Lange2017-06-2718-270/+354
| | | | | | | | | With this commit, core/state's access to the underlying key/value database is mediated through an interface. Database errors are tracked in StateDB and returned by CommitTo or the new Error method. Motivation for this change: We can remove the light client's duplicated copy of core/state. The light client now supports node iteration, so tracing and storage enumeration can work with the light client (not implemented in this commit).
* Merge pull request #14687 from markya0616/unused_eventsPéter Szilágyi2017-06-261-16/+0
|\ | | | | core: remove unused events
| * core: remove unused eventsmark.lin2017-06-231-16/+0
| |
* | Merge pull request #14673 from holiman/txfixPéter Szilágyi2017-06-232-41/+199
|\ \ | | | | | | core: add testcase for txpool
| * | core: ensure transactions correctly drop on pool limitingPéter Szilágyi2017-06-232-87/+166
| | |
| * | core: add testcase for txpoolMartin Holst Swende2017-06-232-0/+79
| | |
* | | eth/downloader: separate state sync from queue (#14460)Felix Lange2017-06-222-8/+29
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * eth/downloader: separate state sync from queue Scheduling of state node downloads hogged the downloader queue lock when new requests were scheduled. This caused timeouts for other requests. With this change, state sync is fully independent of all other downloads and doesn't involve the queue at all. State sync is started and checked on in processContent. This is slightly awkward because processContent doesn't have a select loop. Instead, the queue is closed by an auxiliary goroutine when state sync fails. We tried several alternatives to this but settled on the current approach because it's the least amount of change overall. Handling of the pivot block has changed slightly: the queue previously prevented import of pivot block receipts before the state of the pivot block was available. In this commit, the receipt will be imported before the state. This causes an annoyance where the pivot block is committed as fast block head even when state downloads fail. Stay tuned for more updates in this area ;) * eth/downloader: remove cancelTimeout channel * eth/downloader: retry state requests on timeout * eth/downloader: improve comment * eth/downloader: mark peers idle when state sync is done * eth/downloader: move pivot block splitting to processContent This change also ensures that pivot block receipts aren't imported before the pivot block itself. * eth/downloader: limit state node retries * eth/downloader: improve state node error handling and retry check * eth/downloader: remove maxStateNodeRetries It fails the sync too much. * eth/downloader: remove last use of cancelCh in statesync.go Fixes TestDeliverHeadersHang*Fast and (hopefully) the weird cancellation behaviour at the end of fast sync. * eth/downloader: fix leak in runStateSync * eth/downloader: don't run processFullSyncContent in LightSync mode * eth/downloader: improve comments * eth/downloader: fix vet, megacheck * eth/downloader: remove unrequested tasks anyway * eth/downloader, trie: various polishes around duplicate items This commit explicitly tracks duplicate and unexpected state delieveries done against a trie Sync structure, also adding there to import info logs. The commit moves the db batch used to commit trie changes one level deeper so its flushed after every node insertion. This is needed to avoid a lot of duplicate retrievals caused by inconsistencies between Sync internals and database. A better approach is to track not-yet-written states in trie.Sync and flush on commit, but I'm focuing on correctness first now. The commit fixes a regression around pivot block fail count. The counter previously was reset to 1 if and only if a sync cycle progressed (inserted at least 1 entry to the database). The current code reset it already if a node was delivered, which is not stong enough, because unless it ends up written to disk, an attacker can just loop and attack ad infinitum. The commit also fixes a regression around state deliveries and timeouts. The old downloader tracked if a delivery is stale (none of the deliveries were requestedt), in which case it didn't mark the node idle and did not send further requests, since it signals a past timeout. The current code did mark it idle even on stale deliveries, which eventually caused two requests to be in flight at the same time, making the deliveries always stale and mass duplicating retrievals between multiple peers. * eth/downloader: fix state request leak This commit fixes the hang seen sometimes while doing the state sync. The cause of the hang was a rare combination of events: request state data from peer, peer drops and reconnects almost immediately. This caused a new download task to be assigned to the peer, overwriting the old one still waiting for a timeout, which in turned leaked the requests out, never to be retried. The fix is to ensure that a task assignment moves any pending one back into the retry queue. The commit also fixes a regression with peer dropping due to stalls. The current code considered a peer stalling if they timed out delivering 1 item. However, the downloader never requests only one, the minimum is 2 (attempt to fine tune estimated latency/bandwidth). The fix is simply to drop if a timeout is detected at 2 items. Apart from the above bugfixes, the commit contains some code polishes I made while debugging the hang. * core, eth, trie: support batched trie sync db writes * trie: rename SyncMemCache to syncMemBatch
* / cmd/evm, core/vm: add --nomemory, --nostack to evm (#14617)Martin Holst Swende2017-06-212-31/+31
|/
* Merge pull request #14581 from holiman/byte_optPéter Szilágyi2017-06-132-7/+48
|\ | | | | core/vm: improve opByte
| * core/vm, common/math: Add doc about Byte, fix formatMartin Holst Swende2017-06-091-1/+0
| |
| * common/math, core/vm: Un-expose bigEndianByteAt, use correct terms for ↵Martin Holst Swende2017-06-071-2/+2
| | | | | | | | endianness
| * core/vm, common/math: Add fast getByte for bigints, improve opByteMartin Holst Swende2017-06-052-7/+49
| |
* | cmd/evm: add --prestate, --sender, --json flags for fuzzing (#14476)Martin Holst Swende2017-06-074-19/+142
| |
* | core/types: use Header.Hash for block hashes (#14587)bailantaotao2017-06-071-1/+1
| | | | | | Fixes #14586
* | core: Fix VM error loggingLewis Marshall2017-06-061-1/+1
|/ | | | Signed-off-by: Lewis Marshall <lewis@lmars.net>
* core/vm: Use a bitmap instead of a map for jumpdest analysisNick Johnson2017-06-021-14/+12
| | | | t push --force
* core: only reorg changed account, not allPéter Szilágyi2017-06-012-21/+35
|
* core: don't uselessly recheck transactions on dumpPéter Szilágyi2017-06-011-19/+8
|
* core: check for gas limit exceeding txs too on new blockPéter Szilágyi2017-05-303-31/+72
|
* cmd, core, eth: configurable txpool parametersPéter Szilágyi2017-05-294-75/+120
|
* core: fix minor accidental typos and comment errorsPéter Szilágyi2017-05-253-8/+8
|
* core: typos and comments improvechanghong2017-05-2511-323/+324
| | | | | | | | 1. fix typos 2. methods recevier of struct should be same 3. comments improve (cherry picked from commit 1ba979539582a00b7fd1a7c8a37a6852e59eac0d)
* core/vm: allocate stack to 1024Jeffrey Wilcke2017-05-251-1/+1
| | | | | Pre allocate the stack to 1024 optimising stack pushing, reducing calls to runtime.makeslice and runtime.mallocgc
* Merge pull request #14502 from karalabe/mobile-import-ecdsaFelix Lange2017-05-251-1/+1
|\ | | | | Enforce 256 bit keys on raw import, support raw mobile imports
| * accounts/keystore, crypto: enforce 256 bit keys on importPéter Szilágyi2017-05-231-1/+1
| |
* | core/vm: expose intpool to stack dup methodJeffrey Wilcke2017-05-232-3/+3
| | | | | | | | | | Improve the duplication method of the stack to reuse big ints by passing in an existing integer pool.
* | core/vm: capped int poolJeffrey Wilcke2017-05-231-0/+6
| |
* | core/vm: improved push instructionsJeffrey Wilcke2017-05-232-35/+48
| | | | | | | | | | Improved push instructions by removing unnecessary big int allocations and by making it int instead of big.Int
* | core/vm: improve error message for invalid opcodesValentin Wüstholz2017-05-221-1/+1
| |
* | core/state: fixed (self)destructed objectsJeffrey Wilcke2017-05-182-2/+9
| | | | | | | | | | | | Add the object to the list of destructed objects during a selfdestruct / suicide operation and also remove it from the list once the journal reverts.
* | consensus, core, core/vm, parems: review fixesJeffrey Wilcke2017-05-184-23/+13
| |
* | core/types: corrected abstract signing addressJeffrey Wilcke2017-05-181-1/+1
| |
* | consensus, core/*, params: metropolis preparation refactorJeffrey Wilcke2017-05-1811-133/+233
|/ | | | | | | | | | | | | | | | | | | | | | | | This commit is a preparation for the upcoming metropolis hardfork. It prepares the state, core and vm packages such that integration with metropolis becomes less of a hassle. * Difficulty calculation requires header instead of individual parameters * statedb.StartRecord renamed to statedb.Prepare and added Finalise method required by metropolis, which removes unwanted accounts from the state (i.e. selfdestruct) * State keeps record of destructed objects (in addition to dirty objects) * core/vm pre-compiles may now return errors * core/vm pre-compiles gas check now take the full byte slice as argument instead of just the size * core/vm now keeps several hard-fork instruction tables instead of a single instruction table and removes the need for hard-fork checks in the instructions * core/vm contains a empty restruction function which is added in preparation of metropolis write-only mode operations * Adds the bn256 curve * Adds and sets the metropolis chain config block parameters (2^64-1)
* cmd, core, eth, miner: remove txpool gas price limits (#14442)Péter Szilágyi2017-05-174-101/+599
|
* core: fix processing regression during receipt importPéter Szilágyi2017-05-082-8/+5
|
* cmd, core, params: add --rinkeby flag for fast connectivityPéter Szilágyi2017-05-042-0/+13
|
* Merge pull request #14350 from fjl/trie-iterator-skip-2Péter Szilágyi2017-04-254-7/+24
|\ | | | | eth: add debug_storageRangeAt
| * eth: add debug_storageRangeAtFelix Lange2017-04-252-2/+18
| |
| * trie: add start key to NodeIterator constructorsFelix Lange2017-04-253-5/+5
| | | | | | | | | | | | | | | | | | The 'step' method is split into two parts, 'peek' and 'push'. peek returns the next state but doesn't make it current. The end of iteration was previously tracked by setting 'trie' to nil. End of iteration is now tracked using the 'iteratorEnd' error, which is slightly cleaner and requires less code.
| * trie: clean up iterator constructorsFelix Lange2017-04-253-4/+5
| | | | | | | | | | | | | | Make it so each iterator has exactly one public constructor: - NodeIterators can be created through a method. - Iterators can be created through NewIterator on any NodeIterator.
* | core, light: delete SplitStatTy, ChainSplitEvent (unused)Felix Lange2017-04-222-12/+3
| |
* | core: make genesis incompatibility error more explicitPéter Szilágyi2017-04-201-1/+1
|/
* all: update license informationFelix Lange2017-04-149-2/+114
|
* core: don't import genesis block in TestDAOForkRangeExtradataFelix Lange2017-04-131-4/+4
| | | | The genesis block doesn't have a valid ancestor.
* consensus, core, ethstats: use engine specific block beneficiary (#14318)Péter Szilágyi2017-04-125-11/+29
| | | | | | * consensus, core, ethstats: use engine specific block beneficiary * core, eth, les, miner: use explicit beneficiary during mining
* core: fix comment typoJustin2017-04-101-1/+1
|
* consensus/clique: Proof of Authority (#3753)Péter Szilágyi2017-04-101-4/+1
| | | | This PR is a prototype implementation of plugable consensus engines and the Clique PoA protocol ethereum/EIPs#225
* consensus, core: drop all the legacy custom core error typesPéter Szilágyi2017-04-068-220/+38
|
* core, core/types: regenerate JSON marshaling, add "hash" to headers (#13868)Felix Lange2017-04-0611-259/+250
| | | | | | | | | | * Makefile: fix devtools target * core: regenerate genesis marshaling with fjl/gencodec@cbfa5be5a8a8 * core/types: regenerate marshaling methods with fjl/gencodec@cbfa5be5a8a8 * core/types: add "hash" to JSON headers
* core/state: make TestSnapshotRandom work again (#3816)gary rong2017-04-053-5/+8
| | | | | | In `touch` operation, only `touched` filed has been changed. Therefore in the related undo function, only `touched` field should be reverted. In addition, whether remove this obj from dirty map should depend on prevDirty flag.
* core, consensus: pluggable consensus engines (#3817)Péter Szilágyi2017-04-0516-962/+335
| | | | | 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.
* core/types: rename txdata.gasLimit -> txdata.gas in JSON (#13848)bas-vk2017-03-292-4/+4
|
* core, core/types: use non-pointer receiver for Marshal* methodsFelix Lange2017-03-277-112/+106
| | | | | Regenerated with fjl/gencodec@1a75a2161009 Also add ,omitempty to optional GenesisAccount fields.
* core/types: ensure all EIP155 signer fields are set by deriveSignerFelix Lange2017-03-251-1/+1
| | | | Fixes #3819
* core: refactor genesis handlingFelix Lange2017-03-2318-529/+813
| | | | | | | | | | | | | | | | | | | | | | | | This commit solves several issues concerning the genesis block: * Genesis/ChainConfig loading was handled by cmd/geth code. This left library users in the cold. They could specify a JSON-encoded string and overwrite the config, but didn't get any of the additional checks performed by geth. * Decoding and writing of genesis JSON was conflated in WriteGenesisBlock. This made it a lot harder to embed the genesis block into the forthcoming config file loader. This commit changes things so there is a single Genesis type that represents genesis blocks. All uses of Write*Genesis* are changed to use the new type instead. * If the chain config supplied by the user was incompatible with the current chain (i.e. the chain had already advanced beyond a scheduled fork), it got overwritten. This is not an issue in practice because previous forks have always had the highest total difficulty. It might matter in the future though. The new code reverts the local chain to the point of the fork when upgrading configuration. The change to genesis block data removes compression library dependencies from package core.
* core/types: handle nil ChainId in NewEIP155SignerFelix Lange2017-03-231-0/+3
| | | | | | All uses of ChainConfig.ChainId eventually end up in NewEIP155Signer. This fixes the case where users forget to set the ChainId in their config.
* core/state: expose CommitToFelix Lange2017-03-231-2/+3
|
* les: implement request distributor, fix blocking issues (#3660)Felföldi Zsolt2017-03-232-5/+15
| | | | | * les: implement request distributor, fix blocking issues * core: moved header validation before chain mutex lock
* core/vm: use uint64 instead of *big.Int in tracer (#3805)Yohann Leon2017-03-223-14/+10
|
* core, eth, les: support resuming fast sync on heavy rollback (#3743)Péter Szilágyi2017-03-221-24/+49
|
* Merge pull request #3756 from fjl/core-types-gencodecFelix Lange2017-03-229-312/+510
|\ | | | | core/types: use gencodec for JSON marshaling code
| * core/types: use gencodec for JSON marshaling codeFelix Lange2017-03-079-312/+510
| |
* | all: swap out the C++ ethash to the pure Go one (mining todo)Péter Szilágyi2017-03-0910-58/+52
|/
* Merge pull request #3739 from karalabe/logger-updates-4Péter Szilágyi2017-03-041-2/+0
|\ | | | | all: update light logs (and a few others) to the new model
| * all: update light logs (and a few others) to the new modelPéter Szilágyi2017-03-031-2/+0
| |
* | core: reorg logs crashed, add a check for corner casesPéter Szilágyi2017-03-031-6/+9
|/
* Merge pull request #3722 from fjl/hexutil-text-unmarshalPéter Szilágyi2017-03-022-12/+12
|\ | | | | common/hexutil: implement TextMarshaler, TextUnmarshaler
| * common/hexutil: implement TextMarshaler, TextUnmarshalerFelix Lange2017-03-022-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | This commit makes the wrapper types more generally applicable. encoding.TextMarshaler is supported by most codec implementations (e.g. for yaml). The tests now ensure that package json actually recognizes the custom marshaler implementation irrespective of how it is implemented. The Uint type has new tests, too. These are tricky because uint size depends on the CPU word size. Turns out that there was one incorrect case where decoding returned ErrUint64Range instead of ErrUintRange.
* | core/evm, core/vm: improved evm trace outputJeffrey Wilcke2017-03-011-15/+25
|/ | | | | | | | * Improved the standard evm tracer output and renamed it to WriteTrace which now takes an io.Writer to write the logs to. * Added WriteLogs which writes logs to the given writer in a readable format. * evm utility now also prints logs generated during the execution.
* cmd/evm, core/asm: add EVM assembler (#3686)Jeffrey Wilcke2017-03-014-18/+610
| | | | | The evm compile command implements a simple assembly language that compiles to EVM bytecode.
* cmd/utils, core, params: fork all teh things for dev mode (#3697)Jeffrey Wilcke2017-03-011-0/+3
|
* Merge pull request #3723 from karalabe/logger-updates-2Péter Szilágyi2017-02-2812-220/+152
|\ | | | | Logger updates
| * core/state: drop most of a logs (useless at this volume)Péter Szilágyi2017-02-282-17/+2
| |
| * core, log: track field length and pad to alignPéter Szilágyi2017-02-282-7/+7
| |
| * all: next batch of log polishes to contextual versionsPéter Szilágyi2017-02-2810-203/+150
| |
* | all: unify big.Int zero checks, use common/math in more places (#3716)Felix Lange2017-02-2811-25/+27
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | * common/math: optimize PaddedBigBytes, use it more name old time/op new time/op delta PaddedBigBytes-8 71.1ns ± 5% 46.1ns ± 1% -35.15% (p=0.000 n=20+19) name old alloc/op new alloc/op delta PaddedBigBytes-8 48.0B ± 0% 32.0B ± 0% -33.33% (p=0.000 n=20+20) * all: unify big.Int zero checks Various checks were in use. This commit replaces them all with Int.Sign, which is cheaper and less code. eg templates: func before(x *big.Int) bool { return x.BitLen() == 0 } func after(x *big.Int) bool { return x.Sign() == 0 } func before(x *big.Int) bool { return x.BitLen() > 0 } func after(x *big.Int) bool { return x.Sign() != 0 } func before(x *big.Int) int { return x.Cmp(common.Big0) } func after(x *big.Int) int { return x.Sign() } * common/math, crypto/secp256k1: make ReadBits public in package math
* core, eth: drop database block splitting upgraderPéter Szilágyi2017-02-281-18/+0
|
* core, core/vm, cmd/disasm: unify procedures for disassembling evm code (#3530)Valentin Wüstholz2017-02-275-162/+213
|
* common: move big integer math to common/math (#3699)Felix Lange2017-02-2712-72/+111
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * common: remove CurrencyToString Move denomination values to params instead. * common: delete dead code * common: move big integer operations to common/math This commit consolidates all big integer operations into common/math and adds tests and documentation. There should be no change in semantics for BigPow, BigMin, BigMax, S256, U256, Exp and their behaviour is now locked in by tests. The BigD, BytesToBig and Bytes2Big functions don't provide additional value, all uses are replaced by new(big.Int).SetBytes(). BigToBytes is now called PaddedBigBytes, its minimum output size parameter is now specified as the number of bytes instead of bits. The single use of this function is in the EVM's MSTORE instruction. Big and String2Big are replaced by ParseBig, which is slightly stricter. It previously accepted leading zeros for hexadecimal inputs but treated decimal inputs as octal if a leading zero digit was present. ParseUint64 is used in places where String2Big was used to decode a uint64. The new functions MustParseBig and MustParseUint64 are now used in many places where parsing errors were previously ignored. * common: delete unused big integer variables * accounts/abi: replace uses of BytesToBig with use of encoding/binary * common: remove BytesToBig * common: remove Bytes2Big * common: remove BigTrue * cmd/utils: add BigFlag and use it for error-checked integer flags While here, remove environment variable processing for DirectoryFlag because we don't use it. * core: add missing error checks in genesis block parser * common: remove String2Big * cmd/evm: use utils.BigFlag * common/math: check for 256 bit overflow in ParseBig This is supposed to prevent silent overflow/truncation of values in the genesis block JSON. Without this check, a genesis block that set a balance larger than 256 bits would lead to weird behaviour in the VM. * cmd/utils: fixup import
* all: blidly swap out glog to our log15, logs need reworkPéter Szilágyi2017-02-2312-161/+154
|
* trie: add difference iterator (#3637)Nick Johnson2017-02-231-17/+16
| | | | | This PR implements a differenceIterator, which allows iterating over trie nodes that exist in one trie but not in another. This is a prerequisite for most GC strategies, in order to find obsolete nodes.
* core, core/state, core/vm: remove exported account getters (#3618)Jeffrey Wilcke2017-02-2317-193/+184
| | | | Removed exported statedb object accessors, reducing the chance for nasty bugs to creep in. It's also ugly and unnecessary to have these methods.
* core/vm, crypto: support for go-fuzz (#3672)Jeffrey Wilcke2017-02-211-0/+20
|
* core/blockchain: Change iterator in procFutureBlocks to use lru.Peek instead ↵Martin Holst Swende2017-02-181-1/+1
| | | | of Get (#3655)
* crypto: add btcec fallback for sign/recover without cgo (#3680)Felix Lange2017-02-181-10/+16
| | | | | | | | | | | * vendor: add github.com/btcsuite/btcd/btcec * crypto: add btcec fallback for sign/recover without cgo This commit adds a non-cgo fallback implementation of secp256k1 operations. * crypto, core/vm: remove wrappers for sha256, ripemd160
* logger: remove Core verbosity level (#3659)Felix Lange2017-02-155-13/+13
|
* params: core, core/vm, miner: 64bit gas instructionsJeffrey Wilcke2017-02-1424-681/+843
| | | | | | | | | | | | | | | | | Reworked the EVM gas instructions to use 64bit integers rather than arbitrary size big ints. All gas operations, be it additions, multiplications or divisions, are checked and guarded against 64 bit integer overflows. In additon, most of the protocol paramaters in the params package have been converted to uint64 and are now constants rather than variables. * common/math: added overflow check ops * core: vmenv, env renamed to evm * eth, internal/ethapi, les: unmetered eth_call and cancel methods * core/vm: implemented big.Int pool for evm instructions * core/vm: unexported intPool methods & verification methods * core/vm: added memoryGasCost overflow check and test
* core, eth, internal: Added `debug_getBadBlocks()` method (#3654)Martin Holst Swende2017-02-142-1/+30
| | | | | | | | | | | | | | | | * core,eth,internal: Added `debug_getBadBlocks()` method When bad blocks are discovered, these are stored within geth. An RPC-endpoint makes them availablewithin the `debug` namespace. This feature makes it easier to discover network forks. ``` * core, api: go format + docs * core/blockchain: Documentation, fix minor nitpick * core: fix failing blockchain test
* Revert "params: core, core/vm, miner: 64bit gas instructions (#3514)"Jeffrey Wilcke2017-02-1325-1076/+922
| | | | This reverts commit 8b57c494908637a5c0e74f8f7a13b3218e026757.
* core: ignore 0x prefix for code in JSON genesis blocks (#3656)Martin Holst Swende2017-02-131-1/+1
|
* Merge pull request #3635 from holiman/hive_fixesPéter Szilágyi2017-02-031-0/+2
|\ | | | | core/genesis: add support for setting nonce in 'alloc'
| * core/genesis: add support for setting nonce in 'alloc'Martin Holst Swende2017-01-251-0/+2
| | | | | | | | This is to be able to set `pre`-state when performing blockchain tests through Hive, we need to be able to set the nonce.
* | Merge pull request #3605 from fjl/event-feedPéter Szilágyi2017-02-031-1/+1
|\ \ | | | | | | event: add new Subscription type and related utilities
| * | event: deprecate TypeMux and related typesFelix Lange2017-01-251-1/+1
| |/ | | | | | | | | | | | | | | | | | | | | The Subscription type is gone, all uses are replaced by *TypeMuxSubscription. This change is prep-work for the introduction of the new Subscription type in a later commit. gorename -from '"github.com/ethereum/go-ethereum/event"::Event' -to TypeMuxEvent gorename -from '"github.com/ethereum/go-ethereum/event"::muxsub' -to TypeMuxSubscription gofmt -w -r 'Subscription -> *TypeMuxSubscription' ./event/*.go find . -name '*.go' -and -not -regex '\./vendor/.*' \| xargs gofmt -w -r 'event.Subscription -> *event.TypeMuxSubscription'
* | params: core, core/vm, miner: 64bit gas instructions (#3514)Jeffrey Wilcke2017-02-0224-631/+793
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reworked the EVM gas instructions to use 64bit integers rather than arbitrary size big ints. All gas operations, be it additions, multiplications or divisions, are checked and guarded against 64 bit integer overflows. In additon, most of the protocol paramaters in the params package have been converted to uint64 and are now constants rather than variables. * common/math: added overflow check ops * core: vmenv, env renamed to evm * eth, internal/ethapi, les: unmetered eth_call and cancel methods * core/vm: implemented big.Int pool for evm instructions * core/vm: unexported intPool methods & verification methods * core/vm: added memoryGasCost overflow check and test
* | state: take write lock in GetNonce (#3625)Brian Schroeder2017-02-011-3/+5
| | | | | | | | We must take a write lock here because `GetNonce` calls `StateDB.GetStateObject`, which mutates the DB's live set.
* | core/types: add unittest for tx json serialization (#3609)bas-vk2017-01-271-1/+43
| |
* | core: fix a small typo in blockchain.go (#3611)Vivek Anand2017-01-261-1/+1
|/
* core/types: make Transaction zero value printable (#3595)Felix Lange2017-01-241-14/+18
|
* types: bugfix invalid V derivation on tx json unmarshal (#3594)bas-vk2017-01-212-2/+3
|
* core: removal of dead-codeJeffrey Wilcke2017-01-181-3/+0
| | | | | | Removal of dead code that appeard as if we had a consensus issue. This however is not the case as the proper error catching happens in the vm package instead.
* core/blockchain: Made logging of reorgs more structured (#3573)Martin Holst Swende2017-01-171-6/+13
| | | | | | | | * core: Made logging of reorgs more structured, also always log if reorg is > 63 blocks long * core/blockchain: go fmt * core/blockchain: Minor fixes to the reorg reporting
* cmd/geth, core: add support for recording SHA3 preimages (#3543)Nick Johnson2017-01-1715-35/+118
|
* eth: accept leading zeros for nonce parameter of submitWork (#3558)Felix Lange2017-01-131-2/+2
|
* core: remove support for Olympic networkBas van Kervel2017-01-122-28/+11
|
* core: improve import log alignmentFelix Lange2017-01-112-10/+8
|
* Merge pull request #3535 from fjl/all-ineffassignPéter Szilágyi2017-01-102-6/+5
|\ | | | | all: fix ineffectual assignments
| * all: fix ineffectual assignments and remove uses of crypto.Sha3Felix Lange2017-01-092-6/+5
| | | | | | | | | | go get github.com/gordonklaus/ineffassign ineffassign .
* | core: fix race condition in WriteMipmapBloomBas van Kervel2017-01-091-0/+6
|/
* all: fix spelling errorsPéter Szilágyi2017-01-074-7/+7
|
* logger, pow/dagger, pow/ezp: delete dead codeFelix Lange2017-01-072-7/+2
|
* all: fix issues reported by honnef.co/go/simple/cmd/gosimpleFelix Lange2017-01-076-18/+9
|
* all: gofmt -w -sFelix Lange2017-01-069-143/+143
|
* Merge pull request #3516 from fjl/types-drop-sign-ecdsaPéter Szilágyi2017-01-068-75/+34
|\ | | | | core/types: remove redundant SignECDSA wrappers, rename to SignTx
| * core/types: remove redundant SignECDSA wrappers, rename to SignTxFelix Lange2017-01-058-75/+34
| |
* | Merge pull request #3518 from fjl/ethclient-dependency-cleanupPéter Szilágyi2017-01-0618-91/+84
|\ \ | | | | | | core/types: dependency cleanup
| * | trie: remove dependency on ethdbFelix Lange2017-01-062-9/+8
| | | | | | | | | | | | This removes the core/types -> leveldb dependency.
| * | core/vm: move Log to core/typesFelix Lange2017-01-0616-82/+76
| |/ | | | | | | | | | | | | | | This significantly reduces the dependency closure of ethclient, which no longer depends on core/vm as of this change. All uses of vm.Logs are replaced by []*types.Log. NewLog is gone too, the constructor simply returned a literal.
* | Merge pull request #3515 from bas-vk/exportropstenPéter Szilágyi2017-01-052-1/+5
|\ \ | |/ |/| core,cmd/utils: bugfix for ropsten dump imports
| * core,cmd/utils: bugfix for ropsten dump importsBas van Kervel2017-01-052-1/+5
| |
* | core/vm: improved EVM run loop & instruction calling (#3378)Jeffrey Wilcke2017-01-0528-1946/+1607
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The run loop, which previously contained custom opcode executes have been removed and has been simplified to a few checks. Each operation consists of 4 elements: execution function, gas cost function, stack validation function and memory size function. The execution function implements the operation's runtime behaviour, the gas cost function implements the operation gas costs function and greatly depends on the memory and stack, the stack validation function validates the stack and makes sure that enough items can be popped off and pushed on and the memory size function calculates the memory required for the operation and returns it. This commit also allows the EVM to go unmetered. This is helpful for offline operations such as contract calls.
* | accounts, core, crypto, internal: use normalised V during signature handling ↵Péter Szilágyi2017-01-055-96/+27
|/ | | | | | | | | (#3455) To address increasing complexity in code that handles signatures, this PR discards all notion of "different" signature types at the library level. Both the crypto and accounts package is reduced to only be able to produce plain canonical secp256k1 signatures. This makes the crpyto APIs much cleaner, simpler and harder to abuse.
* core, light: allow zero cost txs from inexistent accounts tooPéter Szilágyi2016-12-162-20/+8
|
* Merge pull request #3433 from karalabe/badblock-order-fixPéter Szilágyi2016-12-142-3/+40
|\ | | | | core: import future blocks one-by-one, enfore chain ancestry
| * core: import future blocks one-by-one, enfore chain ancestryPéter Szilágyi2016-12-132-3/+40
| |
* | core: init pending state in tx pool on creationBas van Kervel2016-12-131-10/+4
|/
* core: bugfix state change race condition in txpool (#3412)bas-vk2016-12-112-36/+124
| | | | | | | | The transaction pool keeps track of the current nonce in its local pendingState. When a new block comes in the pendingState is reset. During the reset it fetches multiple times the current state through the use of the currentState callback. When a second block comes in during the reset its possible that the state changes during the reset. If that block holds transactions that are currently in the pool the local pendingState that is used to determine nonces can get out of sync.
* core, core/vm: implemented a generic environment (#3348)Jeffrey Wilcke2016-12-0623-797/+783
| | | | | | | | Environment is now a struct (not an interface). This reduces a lot of tech-debt throughout the codebase where a virtual machine environment had to be implemented in order to test or run it. The new environment is suitable to be used en the json tests, core consensus and light client.
* core, core/vm, eth/filters: move Removed field into vm.LogFelix Lange2016-12-054-56/+189
| | | | | | | | | | | | This field used to be assigned by the filter system and returned through the RPC API. Now that we have a Go client that uses the underlying type, the field needs to move. It is now assigned to true when the RemovedLogs event is generated so the filter system doesn't need to care about the field at all. While here, remove the log list from ChainSideEvent. There are no users of this field right now and any potential users could subscribe to RemovedLogsEvent instead.
* core/types: Document Transaction.To (#3366)Steven Roose2016-11-291-0/+2
|
* core/types: use package hexutil for JSON handlingFelix Lange2016-11-286-392/+40
|
* core/vm: use package hexutil for JSON handlingFelix Lange2016-11-282-28/+23
|
* core: fixed unwinding bad hash (#3347)Jeffrey Wilcke2016-11-281-3/+8
| | | Fixed unwinding of bad hashes when already on the canon chain
* core: eip unit tests (#3309)Jeffrey Wilcke2016-11-281-7/+71
|
* Merge pull request #3341 from obscuren/touch-delete-fixFelix Lange2016-11-255-2/+53
|\ | | | | core, core/state: fixed consensus issue added touch revert
| * core, core/state: fixed consensus issue added touch revertJeffrey Wilcke2016-11-255-2/+53
| | | | | | | | | | Implemented proper touch revert journal entries and copied a Parity consensus bug in order to remain in sync with the current longest chain.
* | core: remove dead eventPéter Szilágyi2016-11-241-3/+0
|/
* core: improved bad block error reporting (#3320)Jeffrey Wilcke2016-11-233-18/+31
|
* core: implemented new ropsten testnetJeffrey Wilcke2016-11-232-25/+15
|
* cmd/geth, core, light, mobile: removed state account StartingNonceJeffrey Wilcke2016-11-232-8/+4
| | | | All account's nonce start at 0.
* core: Don't perform EIP150 hash check on uncles (#3303)Nick Johnson2016-11-181-1/+1
|
* core, core/types: refactored tx chain id checking (#3257)Jeffrey Wilcke2016-11-154-12/+48
|\ | | | | | | | | | | | | | | * core, core/types: refactored tx chain id checking Refactored explicit chain id checking in to the Sender deriviation method * cmd/utils, params: define chain ids
| * core, core/types: refactored tx chain id checkingJeffrey Wilcke2016-11-144-12/+48
| | | | | | | | Refactored explicit chain id checking in to the Sender deriviation method
* | mobile: initial wrappers for mobile supportPéter Szilágyi2016-11-141-2/+2
| |
* | core/types: turn off nonce checking for Call messagesZsolt Felfoldi2016-11-141-15/+18
|/
* core/vm/runtime: fixed go vetJeffrey Wilcke2016-11-141-1/+9
|
* core, params: EIP#170Jeffrey Wilcke2016-11-141-3/+5
|
* core/types, params: EIP#155Jeffrey Wilcke2016-11-1317-202/+839
|
* core/vm, params: EIP160: EXP repriceJeffrey Wilcke2016-11-131-1/+2
|
* core, core/state, trie: EIP158, reprice & skip empty account writeJeffrey Wilcke2016-11-1334-281/+319
| | | | | | | | | | | | | | | This commit implements EIP158 part 1, 2, 3 & 4 1. If an account is empty it's no longer written to the trie. An empty account is defined as (balance=0, nonce=0, storage=0, code=0). 2. Delete an empty account if it's touched 3. An empty account is redefined as either non-existent or empty. 4. Zero value calls and zero value suicides no longer consume the 25k reation costs. params: moved core/config to params Signed-off-by: Jeffrey Wilcke <jeffrey@ethereum.org>
* all: update license informationFelix Lange2016-11-091-0/+16
|