- Aug 17, 2015
-
-
Jeffrey Wilcke authored
GPO update
-
Zsolt Felföldi authored
-
Jeffrey Wilcke authored
rpc/api: format pendingTx response. Fixes #1648
-
Jeffrey Wilcke authored
Added SG bootnode
-
Jeffrey Wilcke authored
jsre: pretty printer improvements
-
Taylor Gerring authored
-
Taylor Gerring authored
-
- Aug 16, 2015
-
-
Jeffrey Wilcke authored
xeth: call fix when doing 'create'-like calls
-
Jeffrey Wilcke authored
-
Maran Hidskes authored
-
- Aug 15, 2015
-
-
Felix Lange authored
The pretty printer, dumb as it is, printed arrays of objects as [{ ... }] With this change, they now print as: [{ ... }]
-
Felix Lange authored
-
Jeffrey Wilcke authored
xeth: added a transact mu
-
Jeffrey Wilcke authored
Javascript --exec output
-
- Aug 14, 2015
-
-
Jeffrey Wilcke authored
Added a transact mutex. The transact mutex will fix an issue where transactions were created with the same nonce resulting in some transactions being dropped. This happened when two concurrent calls would call the `Transact` method (which is OK) which would both call `GetNonce`. While the managed is thread safe it does not help us in this case.
-
Jeffrey Wilcke authored
Clear current line on ctrl-C
-
Bas van Kervel authored
-
Jeffrey Wilcke authored
cmd/geth, jsre: restore command line editing on windows
-
Jeffrey Wilcke authored
eth, trie: removed key prefixing from state entries & merge db fix
-
Bas van Kervel authored
-
- Aug 13, 2015
-
-
Jeffrey Wilcke authored
support for user agents
-
Jeffrey Wilcke authored
core/vm: fixed jit error & added inline docs
-
Jeffrey Wilcke authored
Fixed database merge strategy to use the correct database. Due to a copy paste fail when doing type evaluation the same database was being iterated (chain), all others were ignored. Removed state prefixing because {H(code): code} is stored in the same database as the rest of the state.
-
Felix Lange authored
p2p: validate recovered ephemeral pubkey
-
Felix Lange authored
rlp: boolean support
-
Péter Szilágyi authored
-
- Aug 12, 2015
-
-
Felix Lange authored
p2p: fix value of DiscSubprotocolError
-
Felix Lange authored
cmd/geth: remove spaces in client identifier
-
Felix Lange authored
We had the wrong value (12) since forever.
-
Felix Lange authored
-
Bas van Kervel authored
-
Felix Lange authored
PR #856 broke command line editing by wrapping stdout with a filter that interprets ANSI escape sequences to fix colored printing on windows. Implement the printer in Go instead so it can do its own platform-dependent coloring. As a nice side effect, the JS console is now noticeably more responsive when printing results. Fixes #1608 Fixes #1612
-
- Aug 11, 2015
-
-
Jeffrey Wilcke authored
p2p/discover: fix two major bugs in reply packet handling
-
Jeffrey Wilcke authored
-
Jeffrey Wilcke authored
web3: updated
-
Jeffrey Wilcke authored
-
Jeffrey Wilcke authored
cmd/ethtest: added trace flag for debugging
-
Jeffrey Wilcke authored
-
Felix Lange authored
If the timeout fired (even just nanoseconds) before the deadline of the next pending reply, the timer was not rescheduled. The timer would've been rescheduled anyway once the next packet was sent, but there were cases where no next packet could ever be sent due to the locking issue fixed in the previous commit. As timing-related bugs go, this issue had been present for a long time and I could never reproduce it. The test added in this commit did reproduce the issue on about one out of 15 runs.
-
Felix Lange authored
Table.mutex was being held while waiting for a reply packet, which effectively made many parts of the whole stack block on that packet, including the net_peerCount RPC call.
-