Commit Graph

2467 Commits

Author SHA1 Message Date
e3da85faed Implemented filter for ws + fixes
* proper 0xhex
* filters fixed
* start of filter manager
* accounts for ws. Closes #246
2015-01-10 00:51:56 +01:00
491c23a728 Moved the TD method from block processor. 2015-01-09 22:42:36 +01:00
351516c57c Cast to string for hashable type 2015-01-09 22:23:33 +01:00
8c7b764d47 updated tests 2015-01-09 21:18:34 +01:00
905b8cc82f mem fixes for vm. Changed uncle inclusion tests 2015-01-09 17:38:35 +01:00
35f4bb96f3 Limit hashes. Closes #249 2015-01-09 16:44:09 +01:00
b136b387a7 Merge branch 'ethersphere-develop' into develop 2015-01-09 16:34:49 +01:00
6eb455032c recover 2015-01-09 15:32:14 +01:00
5c8c0ae04e Fixed size 0 bug 2015-01-09 15:30:46 +01:00
a35be3a12a Merge branch 'develop' of https://github.com/ethersphere/go-ethereum into ethersphere-develop 2015-01-09 13:37:15 +01:00
f9b0d1a8e7 Updated to new ethereum.js api 2015-01-09 13:36:47 +01:00
c9f566269b merged 2015-01-09 13:28:48 +01:00
bfa12d75f8 new switch 2015-01-09 13:26:49 +01:00
18d8bf4b9c updated ethereum.js 2015-01-09 13:01:21 +01:00
aee82d3196 removed 2015-01-09 13:00:37 +01:00
012a1c2533 Updated ethereum.js 2015-01-09 12:45:09 +01:00
585f259b63 Support input from args 2015-01-09 12:04:54 +01:00
b3161f5803 Merge remote-tracking branch 'upstream/develop' into develop 2015-01-09 06:21:47 +00:00
5a9952c7b4 major blockpool change
- the spec says response to getBlockHashes(from, max) should return all hashes starting from PARENT of from. This required major changes and results in much hackier code.
- Introduced a first round block request after peer introduces with current head, so that hashes can be linked to the head
- peerInfo records currentBlockHash, currentBlock, parentHash and headSection
- AddBlockHashes checks header section and creates the top node from the peerInfo of the best peer
- AddBlock checks peerInfo and updates the block there rather than in a node
- request further hashes once a section is created but then no more until the root block is found (so that we know when to stop asking)
- in processSection, when root node is checked and receives a block, we need to check if the section has a parent known to blockchain or blockPool
- when peers are switched, new peer launches a new requestHeadSection loop or activates its actual head section, i.e., the section for it currentBlockHash
- all tests pass
2015-01-09 06:03:45 +00:00
8ecc9509b3 add ErrInsufficientChainInfo error 2015-01-09 06:03:32 +00:00
f72cb28b0f adapt unit tests to spec
- AddBlockHashes ignores the first hash (just used to match getBlockHashes query) sends the rest as blocksMsg
- new test TestPeerWithKnownParentBlock
- new test TestChainConnectingWithParentHash
- adapt all other tests to the new scheme
2015-01-09 05:57:09 +00:00
43ed0ed1ae no need to call AddBlockHashes when receiving new block 2015-01-09 05:06:04 +00:00
69dfca2feb minor changes in integration tests 2015-01-09 05:04:32 +00:00
3bdf28c1fe GetBlockHashesFromHash(hash, max) gives back max hashes starting from PARENT of hash 2015-01-09 05:03:26 +00:00
c8a4c04b36 err 2015-01-08 23:15:46 +01:00
26f066f0c7 just enable by default 2015-01-08 22:18:23 +01:00
4a0ade4788 Fixed some whisper issues 2015-01-08 21:41:32 +01:00
5f958a582d fixed other tests to use hashes as well 2015-01-08 16:48:39 +01:00
e27237a03a Changed to use hash for comparison
DeepReflect would fail on TD since TD isn't included in the original
block and thus the test would fail.
2015-01-08 16:45:51 +01:00
ee84b20247 Reworking GUI interaction. Fixed javascript inject. Closes #132 2015-01-08 16:38:24 +01:00
b25126a277 Minor fixed and additions for block proc
* Path check length
* Genesis include TD
* Output TD on last block
2015-01-08 16:37:06 +01:00
db4aaedcbd Moved ptrie => trie. Removed old trie 2015-01-08 11:47:04 +01:00
982c812e81 Read directly from stdin 2015-01-07 13:38:28 +01:00
c1908c7d91 Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop 2015-01-07 13:22:29 +01:00
59c5a2f519 Merge pull request #244 from fjl/license-tool
Generated License Headers
2015-01-07 13:22:22 +01:00
1d05027ba2 a few fixes for the license tool 2015-01-07 13:17:50 +01:00
fed3e6a808 Refactored ethutil.Config.Db out 2015-01-07 13:17:48 +01:00
ec7cb9981c add license tool and initial mailmap 2015-01-07 12:56:46 +01:00
032ab66529 Added version flag 2015-01-07 01:21:55 +01:00
60d9611c23 Fixed tests where txs weren't properly removed 2015-01-07 01:21:45 +01:00
f0ec751237 Updated tests 2015-01-06 20:22:31 +01:00
25e6c4eff8 Adjusted difficulty and skip get tx messages 2015-01-06 14:02:47 +01:00
a76b7dadae Don't auto push jeff ... 2015-01-06 13:39:01 +01:00
1b903767e0 Fixed port num 2015-01-06 13:31:52 +01:00
4e7f53adf0 Changed to poc-8 & removed GetTxs 2015-01-06 13:31:08 +01:00
564f02aa2b Fixed tests 2015-01-06 13:18:09 +01:00
3b8725e0f5 Merge pull request #239 from fjl/grab-bag
Grab bag of fixes
2015-01-06 13:13:16 +01:00
3caa4ad1ba p2p: improve test for peers message
The test now checks that the number of of addresses is correct
and terminates cleanly.
2015-01-06 12:23:38 +01:00
b0ff946b55 p2p: move peerList back into baseProtocol
It had been moved to Peer, probably for debugging.
2015-01-06 12:23:38 +01:00
eb0e7b1b81 eth, p2p: remove EncodeMsg from p2p.MsgWriter
...and make it a top-level function instead.

The original idea behind having EncodeMsg in the interface was that
implementations might be able to encode RLP data to their underlying
writer directly instead of buffering the encoded data. The encoder
will buffer anyway, so that doesn't matter anymore.

Given the recent problems with EncodeMsg (copy-pasted implementation
bug) I'd rather implement once, correctly.
2015-01-06 12:23:38 +01:00