Jeffrey Wilcke
f0cbebb19f
core: added basic chain configuration
...
Added chain configuration options and write out during genesis database
insertion. If no "config" was found, nothing is written to the database.
Configurations are written on a per genesis base. This means
that any chain (which is identified by it's genesis hash) can have their
own chain settings.
9 years ago
Péter Szilágyi
10d3466c93
Merge pull request #2383 from karalabe/goabi-exclusions-duplicates
...
accounts/abi/bind, cmd/abigen: dedup structs, exclude patterns
9 years ago
Jeffrey Wilcke
db739b506a
Merge pull request #2399 from karalabe/fix-trace-json-output
...
eth: fix accidental nil panic on nil errors
9 years ago
Péter Szilágyi
4326061e35
eth: fix accidental nil panic on nil errors
9 years ago
Péter Szilágyi
f115f077d7
Merge pull request #2398 from karalabe/fix-trace-json-output
...
eth: manually convert errors to strings on the trace API (json cannot)
9 years ago
Péter Szilágyi
6c670eff01
eth: manually convert errors to strings on the trace API (json cannot)
9 years ago
Péter Szilágyi
4ab593c5a1
accounts/abi/bind: support account slices, drop hash type
9 years ago
Péter Szilágyi
c2bbff6116
accounts/abi/bind: merge all tests into a single suite
9 years ago
Péter Szilágyi
787d688c2f
accounts/abi/bind: use anonymous ephemeral call result structs
9 years ago
Péter Szilágyi
b813e4d411
accounts/abi/bind, cmd/abigen: dedup structs, exclude patterns
9 years ago
Jeffrey Wilcke
798e4fb4ed
Merge pull request #2381 from karalabe/fix-abigen-tuples
...
accounts/abi/bind: fix double pointer in generated code
9 years ago
Péter Szilágyi
9b4a45f6e8
accounts/abi/bind: fix double pointer in generated code
9 years ago
Péter Szilágyi
cfb3a8ea8f
Merge pull request #2357 from karalabe/abi-binding-generator
...
accounts/abi/bind: Go ABI binding generator
9 years ago
Péter Szilágyi
73308dbe0e
accounts/abi/bind, cmd/abigen: port to templates, bind to solidity
9 years ago
Péter Szilágyi
86cfc22c79
accounts/abi/bind: constructor, auth utils and various backends
9 years ago
Péter Szilágyi
72826bb5ad
accounts/abi/bind, cmd/abigen: Go API generator around an EVM ABI
9 years ago
Jeffrey Wilcke
75c86f8646
Merge pull request #2141 from obscuren/evm-init
...
core, core/vm, tests: changed the initialisation behaviour of the EVM
9 years ago
Jeffrey Wilcke
0cfa21fc7f
core, eth, cmd: temporary work around for enabling the jit
...
This commit serves as a temporary workaround for enabling the jit until
the block customisation PR is merged in.
9 years ago
Jeffrey Wilcke
5f92606be2
eth/api: added root to the receipts
9 years ago
Jeffrey Wilcke
3601320ccd
eth, rpc: implemented block debugging rpc calls
...
Implemented the following block debugging RPC calls
* Block(RLP)
* BlockByFile(fileName)
* BlockByNumber(number)
* BlockByHash(hash)
9 years ago
Jeffrey Wilcke
14013372ae
core: Added EVM configuration options
...
The EVM is now initialised with an additional configured object that
allows you to turn on debugging options.
9 years ago
Jeffrey Wilcke
9866f19d6a
Merge pull request #2371 from hiddentao/fix_prompt_passwd_input
...
Strip extraneous carriage return from end of entered password
9 years ago
Ramesh Nair
6f30034413
cmd/utils: removed password line endings when not using liner.
9 years ago
Jeffrey Wilcke
77d21e472d
Merge pull request #2259 from bas-vk/http
...
rpc/http: improve request handling
9 years ago
Bas van Kervel
a7bae3b2a6
rpc/http: improve request handling
9 years ago
Jeffrey Wilcke
342ae7ce7d
core, core/vm, tests: changed the initialisation behaviour of the EVM
...
The EVM was previously initialised and created for every CALL, CALLCODE,
DELEGATECALL and CREATE. This PR changes this behaviour so that the same
EVM can be used through the session and beyond as long as the
Environment sticks around.
9 years ago
Péter Szilágyi
b3b110bc95
Merge pull request #2348 from obscuren/abi-variable-input
...
accounts/abi: Fixed bytes input accept []byte and variable input support
9 years ago
Péter Szilágyi
138e7af96c
Merge pull request #2354 from karalabe/miner-atomic-pending
...
eth, miner: fetch pending block/state in on go (data race)
9 years ago
Péter Szilágyi
8b6ae6bf86
Merge pull request #2355 from karalabe/abi-constant-functions-2
...
accounts/abi: handle the "constant" modifier for functions
9 years ago
Péter Szilágyi
270ea6eec3
accounts/abi: handle the "constant" modifier for functions
9 years ago
Péter Szilágyi
0228fb57cd
eth, miner: fetch pending block/state in on go (data race)
9 years ago
Péter Szilágyi
2855a93ede
Merge pull request #2341 from leijurv/patch-2
...
core: fixed various typos
9 years ago
Felix Lange
b5cee9738b
Merge pull request #2350 from leijurv/patch-3
...
core, eth: replace reorganiz with reorganis
9 years ago
Leif Jurvetson
434e4b31d8
core, eth: replace reorganiz with reorganis
9 years ago
Felix Lange
06fe6310a3
Merge pull request #2351 from leijurv/patch-4
...
core: various typos
9 years ago
Felix Lange
066d301520
Merge pull request #2352 from leijurv/patch-5
...
eth: various typos
9 years ago
Leif Jurvetson
bbbe2360d0
eth: various typos
9 years ago
Leif Jurvetson
b7bb2d8589
core: various typos
9 years ago
Leif Jurvetson
c7727191ae
core: fixed various typos
9 years ago
Jeffrey Wilcke
fe45210c55
accounts/abi: Fixed bytes input accept []byte and variable input support
...
Fixed up `[]byte` slice support such that `function print(bytes input)`
accepts `[]byte` as input and treats it as 1 element rather than a slice
of multiple elements.
Added support for variable length input parameters like `bytes` and
`strings`.
9 years ago
Péter Szilágyi
e189fb839c
Merge pull request #2327 from fjl/debug-fixes
...
cmd/utils, internal/debug: fixes for debugging
9 years ago
Jeffrey Wilcke
42c049e519
Merge pull request #2342 from obscuren/issue-templates
...
templates: added issue template
9 years ago
Jeffrey Wilcke
a0e2e22a4f
templates: added issue template
9 years ago
Péter Szilágyi
b8f4a48ada
Merge pull request #2337 from karalabe/upnp-error-hang
...
p2p/nat: fix #2291 , NAT discovery did't abort on failure
9 years ago
Péter Szilágyi
64c8e2f2ca
p2p/nat: fix #2291 , NAT discovery did't abort on failure
9 years ago
Felix Lange
c1343c8872
cmd/utils, internal/debug: show all stacks for 10x Ctrl-C induced panic
...
Go 1.6 only prints stacks for the current goroutine by default,
but for this panic we want to see all of them.
9 years ago
Felix Lange
cafdd5931e
internal/debug: don't disable heap profile collection by default
...
Setting runtime.MemProfileRate to 0 through the flag default
value makes it impossible to get an 'in-use' profile.
9 years ago
Jeffrey Wilcke
8a3ce5450a
Merge pull request #2311 from obscuren/future-proc-fix
...
core: added future proc mutex lock
9 years ago
Péter Szilágyi
08759b0aaf
Merge pull request #2322 from karalabe/headerchain-preformance-fixes
...
core: cache fresh headers and tds to avoid db trashing
9 years ago
Jeffrey Wilcke
558d18d2b0
core: added future proc mutex lock
...
Added a future lock which prevents the anything being added or removed
from or to the set when looping over the set of blocks. This fixes a nil
pointer in the range loop when trying to retrieve a block from the set
which was previously available but removed due to regular chain
processing.
Fixes #2305
9 years ago