Peter Pratscher
15780ead07
core/vm, rpc/api: renamed to debug.replayTransaction, migrated to new RPC, integrated feedback
...
Integrated code review suggestions
Integrated last review comments
9 years ago
Jeffrey Wilcke
528dcc3814
Merge pull request #2151 from fjl/debug-api
...
internal/debug: APIs for profiling and tracing
9 years ago
Jeffrey Wilcke
ae1a137ce7
Merge pull request #2143 from karalabe/fix-transaction-sort-2
...
core, core/types, miner: fix transaction nonce-price combo sort
9 years ago
Felix Lange
3750d835a1
internal/debug: APIs for profiling and tracing
...
The debug package provides an RPC wrapper for glog settings and the
debugging facilities of the Go runtime. They can be triggered through
both command line flags and the IPC listener.
9 years ago
Felix Lange
e287b56b69
logger/glog: clean up flag getters
9 years ago
Felix Lange
a411fe7e6e
logger/glog: fix TraceLocation.Set("")
9 years ago
Felix Lange
5728dd381d
rpc: fix success response encoding for null return value
...
The "result" field of JSON-RPC 2.0 responses was omitted
if the result was nil, causing exceptions in web3.js.
9 years ago
Jeffrey Wilcke
63e76482ac
Merge pull request #2140 from obscuren/rpc2-console
...
Rpc2 console
9 years ago
Bas van Kervel
19b2640e89
rpc: migrated the RPC insterface to a new reflection based RPC layer
9 years ago
Felix Lange
f2ab351e8d
Merge pull request #2136 from fjl/glog-prefix
...
logger/glog: improve vmodule
9 years ago
Felix Lange
6e6931ef73
Merge pull request #2145 from caktux/develop
...
separate and optimize Dockerfile for master and develop
9 years ago
Péter Szilágyi
a2dc074b1d
core, core/types, miner: fix transaction nonce-price combo sort
9 years ago
caktux
896c134d30
separate and optimize Dockerfile for master and develop
9 years ago
Felix Lange
e4d794851b
node, rpc/api: add debug_vmodule, move admin_verbosity to debug_verbosity
9 years ago
Felix Lange
0edcbc797f
logger/glog: add SetVmodule
9 years ago
Felix Lange
a15b02320e
logger/glog: add directory context to output and vmodule matching
...
This change allows setting the verbosity for directory prefixes
using the syntax:
--vmodule=eth/=6
9 years ago
Jeffrey Wilcke
78f1964095
Merge pull request #2115 from karalabe/vm-debug-storage
...
core/vm: resolve circular dependency to debug vm storage
9 years ago
Jeffrey Wilcke
7b11e94441
Merge pull request #2132 from bas-vk/console-sleep
...
console: add admin.sleep and admin.sleepBlocks
9 years ago
Felix Lange
e7f6798b59
Merge pull request #2130 from bas-vk/nodeinfo-format
...
Nodeinfo format Genesis and Header
9 years ago
Bas van Kervel
cdd34fcb16
console: add admin.sleep and admin.sleepBlocks
9 years ago
Bas van Kervel
6e7620afe0
eth: changed NodeInfo Genesis and Head types
9 years ago
Jeffrey Wilcke
5945a33350
Merge pull request #2119 from karalabe/statedb-batch-commit
...
core/state: always commit in batches, just finish if not needed later
9 years ago
Péter Szilágyi
2d5d6d9d0e
core/state: always commit in batches, just finish if not needed later
9 years ago
Péter Szilágyi
752c75fb21
core/vm: resolve circular dependency to debug vm storage
9 years ago
Felix Lange
1b8566a7b1
Merge pull request #2114 from karalabe/chain-maker-state-remake
...
core: fix invalid state reuse in chain maker based tests
9 years ago
Péter Szilágyi
e5b480b638
core: fix invalid state reuse in chain maker based tests
9 years ago
Felix Lange
0ab8a175d8
Merge pull request #2110 from LefterisJP/determining_home_for_ubuntu_core
...
common: Fix HomeDir detection
9 years ago
Lefteris Karapetsas
e2fdd33541
common: Fix HomeDir detection
...
I am working on porting geth to [Ubuntu Core](https://developer.ubuntu.com/en/snappy/https://developer.ubuntu.com/en/snappy/ ). I am testing geth on a Raspberry PI and for Ubuntu Core the $HOME directory is unique for each application. See [here](https://developer.ubuntu.com/en/snappy/guides/filesystem-layout ) for more information of their filesystem layout.
For some reason in Go `usr.HomeDir` returns a different value than `$HOME` in Ubuntu Core.
Adding this at the end of `HomeDir()`
```go
fmt.Printf("at HomeDir, user.HomeDir = %s and $HOME is %s\n", usr.HomeDir, os.Getenv("HOME"))
```
gives the following output
```
at HomeDir, user.HomeDir = /home/ubuntu and $HOME is /home/ubuntu/apps/geth.sideload/IJcODREBYbHO
```
With this commit, I propose giving precedence to the `$HOME` environment variable as is also suggested by the [homedir](https://github.com/mitchellh/go-homedir/blob/master/homedir.go ) project.
9 years ago
Jeffrey Wilcke
32226f1b0c
Merge pull request #2097 from karalabe/block-state-checks
...
core, eth/downloader: ensure state presence in ancestor lookup
9 years ago
Jeffrey Wilcke
a7fc4fa9b7
Merge pull request #2101 from karalabe/delete-outoffund-transactions
...
core: transaction invalidation and reorganization fixes
9 years ago
Péter Szilágyi
649787a9bf
core: fix transaction reorg issues within the tx pool
9 years ago
Péter Szilágyi
9e011ff1cd
core, eth/downloader: ensure state presence in ancestor lookup
9 years ago
Felix Lange
36137623ed
Merge pull request #2099 from karalabe/fix-throttling-test
...
eth/downloader: throttling tests are time-sensitive, don't run parallel
9 years ago
Péter Szilágyi
1f39746886
eth/downloader: throttling tests are time-sensitive, don't run parallel
9 years ago
Jeffrey Wilcke
dbbcf558e2
Merge pull request #2064 from fjl/remove-common-rlp
...
common: remove old RLP implementation, Value and ExtPackage
9 years ago
Jeffrey Wilcke
4811409e99
Merge pull request #2084 from bas-vk/rpcnilptr
...
console crash on nil ptr
9 years ago
Bas van Kervel
3c9a2c752f
console: bugfix that causes the console to crash when connection to an endpoint without the personal api enabled
9 years ago
Jeffrey Wilcke
fd69d2b7a8
Merge pull request #2019 from zsfelfoldi/light-state
...
Light state
9 years ago
Felix Lange
e6fb69296e
common: remove old RLP implementation, Value and ExtPackage
...
In order to make this happen, kill all remaining trivial uses of
common/{rlp,value}.go. The non-trivial ones have been updated earlier.
9 years ago
Felix Lange
1b89bd5d26
core/state, core/types use package rlp for state, receipt serialisation
9 years ago
Felix Lange
9be5d5cd90
eth/downloader: fix negative balance issue in tests
...
The test chain generated by makeChainFork included invalid uncle
headers, crashing the generator during the state commit.
The headers were invalid because they used the iteration counter as the
block number, even though makeChainFork uses a block with number > 0 as
the parent. Fix this by introducing BlockGen.Number, which allows
accessing the actual number of the block being generated.
9 years ago
Jeffrey Wilcke
2baf1de00d
Merge pull request #1925 from fjl/p2p-dial-resolve
...
p2p: resolve incomplete dial targets
9 years ago
Felix Lange
b3f1f4c673
p2p/discover: attempt to deflake TestUDP_responseTimeouts
...
The test expected the timeout to fire after a matcher for the response
was added, but the timeout is random and fired sooner sometimes.
9 years ago
Felix Lange
6c41e675ec
p2p: resolve incomplete dial targets
...
This change makes it possible to add peers without providing their IP
address. The endpoint of the target node is resolved using the discovery
protocol.
9 years ago
Felix Lange
04c6369a09
p2p, p2p/discover: track bootstrap state in p2p/discover
...
This change simplifies the dial scheduling logic because it
no longer needs to track whether the discovery table has been
bootstrapped.
9 years ago
Felix Lange
d1f507b7f1
p2p/discover: support incomplete node URLs, add Resolve
9 years ago
zsfelfoldi
ef422ee1e1
light: implemented odr-capable trie and state structures
9 years ago
Jeffrey Wilcke
82a024d425
Merge pull request #1997 from zsfelfoldi/gasprice2
...
core: tx pool skip price validation for "owned" transactions
9 years ago
Jeffrey Wilcke
24f856ad6b
Merge pull request #2077 from karalabe/fix-header-query-duplication
...
eth: fix #2076 , where end of hash query was interpreted number query
9 years ago
Felix Lange
e640861704
Merge pull request #2061 from zsfelfoldi/rpc-context
...
rpc: optionally passing context argument to rpc v2 api methods
9 years ago