fc2a061d51
core/vm: unexported stack again. No longer required
2015-06-10 17:47:36 +02:00
065aff9ffa
core/vm: documentation and name changes
2015-06-10 17:47:36 +02:00
4407524d13
core: fixed race condition for subscriptions
2015-06-10 17:13:32 +02:00
29f7902fee
core: fixed test
2015-06-10 17:13:32 +02:00
65a48f9cd8
core: fixed race condition in the transaction pool
...
Removed `Stop/Start` mechanism from the transaction pool.
2015-06-10 17:13:32 +02:00
1774c49456
core: log tx count for each set of blocks we're importing
2015-06-10 12:57:58 +02:00
6fb6e6679e
core/vm, core/state: added storage to structured vm logging
2015-06-10 12:57:37 +02:00
38c61f6f25
core, core/vm: added structure logging
...
This also reduces the time required spend in the VM
2015-06-10 12:23:49 +02:00
ff5b3ef087
core/vm: added structured logging
2015-06-10 10:59:44 +02:00
468501cb86
core/vm: changed program counter to uint64
2015-06-10 10:44:46 +02:00
bc6031e7bb
core, xeth: moved nonce management burden from xeth to txpool
2015-06-09 21:01:02 +02:00
d652a58ada
core: fix a race condition accessing the gas limit
2015-06-09 21:13:21 +03:00
fecf214175
core: fix a lock annoyance and potential deadlock
2015-06-09 21:02:26 +03:00
73c355591f
core, eth: document that result of GetTransactions is modifiable
2015-06-09 17:07:10 +02:00
7aefe123e9
core/types: add Transaction.Size
2015-06-09 17:06:31 +02:00
c71ab2a6a3
Merge pull request #1219 from Gustav-Simonsson/precompiled_ec_recover_padding
...
Precompiled ec recover padding
2015-06-09 07:21:23 -07:00
6e3b58e491
Remove unneeded if check on EC recover padding
2015-06-09 16:03:05 +02:00
365576620a
Merge pull request #1216 from karalabe/fix-eth-dataraces
...
Fix various data races in eth and core
2015-06-09 06:53:49 -07:00
ad5b5a4895
Pad precompiled EC recover input and add validations
2015-06-09 15:41:15 +02:00
ebf2aabd25
core: fix up a deadlock caused by double locking
2015-06-09 16:26:44 +03:00
ca8cb65b73
core: fix data race accessing ChainManager.currentBlock
2015-06-09 15:30:46 +03:00
07baf66200
core: fix data race in accessing ChainManager.td
2015-06-09 15:23:20 +03:00
190c1b688a
core: skip genesis block for reprocess. Closes #1202
2015-06-09 13:24:32 +02:00
a5b977aa90
core: write accounts to statedb. Closes #1210
2015-06-09 11:37:01 +02:00
0f1cdfa53a
Merge pull request #1193 from tgerring/hotbackup
...
Improve export command
2015-06-08 16:32:38 -07:00
5245bd7b20
core: added a test for missing nonces
...
This test showed the logic in the queue was slightly flawed sending out
transactions to its peer it couldn't even resolve itself.
2015-06-09 00:41:47 +02:00
6244b10a8f
core: settable genesis nonce
...
You can set the nonce of the block with `--genesisnonce`. When the
genesis nonce changes and it doesn't match with the first block in your
database it will fail. A new `datadir` must be given if the nonce of the
genesis block changes.
2015-06-08 18:33:43 +02:00
6c27e2aaf6
core: add bad block for the 'missing nonce check' fork
2015-06-08 02:54:10 +02:00
0b493910d3
core: fix the nonce check one more time
...
The block nonce verification was effectively disabled by a typo.
This time, there is an actual test for it.
2015-06-08 02:19:39 +02:00
4ab0cedf42
Export should start with block 0
2015-06-06 10:59:56 -04:00
ed621aae33
Cleanup
2015-06-06 09:50:23 -04:00
89c9320d80
Allow exporting subset of chain
2015-06-05 23:01:54 -04:00
7ab87f9f6e
wip
2015-06-05 17:33:30 +02:00
912cf7ba04
core: added fork test & double nonce test
2015-06-04 19:28:39 +02:00
0f51ee6c88
crypto: return common.Address rather than raw bytes
2015-06-04 19:28:39 +02:00
dcdb4554d7
core: documented changes in tx pool
2015-06-04 16:19:22 +02:00
cf5ad266f6
core: only change the nonce if the account nonce is lower
2015-06-04 15:44:42 +02:00
9dd12a64a7
core: renamed txs to pending
2015-06-04 13:16:31 +02:00
140d883901
core: test updates
2015-06-03 22:53:33 +02:00
d09a6e5421
core, eth, miner: moved nonce management to tx pool.
...
Removed the managed tx state from the chain manager to the transaction
pool where it's much easier to keep track of nonces (and manage them).
The transaction pool now also uses the queue and pending txs differently
where queued txs are now moved over to the pending queue (i.e. txs ready
for processing and propagation).
2015-06-03 22:43:23 +02:00
ec7a2c3442
core: don't remove transactions after block processing
...
The transaction pool drops processed transactions on its own
during pool maintenance.
2015-06-03 22:43:23 +02:00
5721c43585
core: update documentation comments for TxPool
2015-06-03 22:43:23 +02:00
ca31d71107
core: remove unused code from TxPool
2015-06-03 22:43:23 +02:00
08befff8f1
core: compute less transaction hashes in TxPool
2015-06-03 22:43:23 +02:00
770a0e7839
wip
2015-06-03 22:39:17 +02:00
b26f5e0bb7
types: block json unmarshal method added
2015-06-03 22:39:17 +02:00
fa4aefee44
core/vm: cleanup and renames
2015-06-03 22:39:17 +02:00
8610314918
Merge pull request #1167 from Gustav-Simonsson/check_ec_recover_err
...
Add missing err checks on From()
2015-06-03 10:29:47 -07:00
71d9367edc
Merge pull request #1151 from fjl/parallel-nonce-2
...
core: re-add parallel nonce checks
2015-06-03 09:12:06 -07:00
122d2db095
Merge pull request #1150 from fjl/fix-jumpdest
...
core/vm: improve JUMPDEST analysis
2015-06-03 09:11:56 -07:00