| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
There is no need to use the reflection-based decoder to decode []byte.
|
|
|
|
| |
The delete/remove naming has caused endless confusion in the past.
|
|
|
|
|
|
|
|
|
|
| |
This commit replaces the deep-copy based state revert mechanism with a
linear complexity journal. This commit also hides several internal
StateDB methods to limit the number of ways in which calling code can
use the journal incorrectly.
As usual consultation and bug fixes to the initial implementation were
provided by @karalabe, @obscuren and @Arachnid. Thank you!
|
|\
| |
| | |
internal/build: use less edgy command to get the branch name
|
|/ |
|
|\
| |
| | |
core/state: track dirty state entries for each object
|
|/ |
|
|\
| |
| | |
build: improve debian packaging
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This commit tweaks the debian packaging tool:
* All build environment metadata can now be overriden on the command
line. This allows testing the CI build behaviour locally.
* -unstable packages now actually contain the binaries (oops)
* packages use Go 1.7 to build
* archiving is skipped for PR builds
|
|\ \
| | |
| | | |
crypto/sha3: update from golang.org/x/crypto/sha3 a 80b25ed4
|
|/ /
| |
| |
| | |
This pulls in the assembly implementation of keccakf1600 for amd64.
|
|\ \
| |/
|/| |
cmd, core, internal, light, tests: avoid hashing the code in the VM
|
|/ |
|
|\
| |
| | |
trie: fix delete bug for values contained in fullNode
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Delete crashed if a fullNode contained a valueNode directly. This bug is
very unlikely to occur with SecureTrie, but can happen with regular
tries. This commit also introduces a randomised test which triggers all
trie operations, which should prevent such bugs in the future.
Credit for finding this bug goes to Github user @rjl493456442.
|
| |
| |
| |
| |
| | |
Package crypto needs cgo, which is inconvenient for some build
configurations.
|
|\ \
| | |
| | | |
accounts: left pad keybytes-to-encrypt
|
| | | |
|
|\ \ \
| |_|/
|/| | |
cmd/utils, node: make datadir reusable for bzzd
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
This change ensures that nodes started with different Name but same
DataDir values don't use the same nodekey and IPC socket.
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Port mapper auto discovery used to run immediately after parsing the
--nat flag, giving it a slight performance boost. But this is becoming
inconvenient because we create node.Node for all geth operations
including account management and bare chain interaction. Delay
autodiscovery until the first use instead, which avoids any network
interaction until the node is actually started.
|
|\ \ \
| | | |
| | | | |
README: Changed http:// to https:// on some links
|
| | |/
| |/|
| | | |
Changed http:// to https:// on some links in README.md
|
| | | |
|
|\ \ \
| |/ /
|/| | |
core, trie: replace state caches with trie journal
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
cmd/utils: don't check for stderr redirect on windows
|
|/ /
| |
| |
| |
| |
| |
| |
| | |
The redirect check did not work on Go 1.6 and below because Stat
returned an error for stdout and stderr. In Go 1.7 Stat works on stdout
but doesn't return anything meaningful, causing cmd/geth test failures
because the message is printed to stderr only. Fix it by printing to
stdout only.
|
|\ \
| | |
| | | |
build: limit test concurrency
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
TravisCI and AppVeyor run the tests in very slow VMs.
Some of our tests can't cope with that. Running less tests
in parallel should make them somewhat less flakey.
|
|\ \ \
| |/ /
|/| | |
accounts/abi: fix typo in the comment (dummy commit)
|
|/ / |
|
|\ \
| | |
| | | |
State caching
|
|/ /
| |
| |
| |
| | |
This change introduces a global, per-state cache that keeps account data
in the canon state. Thanks to @karalabe for lots of fixes.
|
|\ \
| | |
| | | |
core/state: short-circuit balance change if zero value
|
|/ / |
|
|\ \
| | |
| | | |
light: fix memory expansion bug (same as fix for core/state)
|
| | | |
|
|\ \ \
| |/ /
|/| | |
ethclient: bugfix retrieving logs
|
|/ / |
|
|\ \
| | |
| | | |
core/state, light: remove unused StateObject.initCode
|
|/ / |
|
|\ \
| |/
|/| |
core/state: Fix memory expansion bug by not copying clean objects
|
| | |
|
|\ \
| | |
| | | |
cmd, eth: drop the blockchain version from cli/eth configs
|
|/ / |
|
|\ \
| | |
| | | |
miner: set tx index logs
|
| | | |
|
|\ \ \
| | | |
| | | | |
rpc: format filter ID according to spec for quantities
|
| | | | |
|
|\ \ \ \
| |_|/ /
|/| | | |
core/types, ethclient: fix broken subscriptions
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
ethereum, ethclient: add SyncProgress API endpoint
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
cmd/evm, cmd/geth, cmd/utils: move version handling to cmd/utils
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
miner: Prevent attempts to close nil quit channel in agent (fixes #2948)
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
#2948)
Also remove the now un-needed mutex locking in Start() and Stop()
|
|\ \ \ \
| | | | |
| | | | | |
Transaction pool optimizations
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
contracts/ens: Replace setOwner with setSubnodeOwner per EIP137
|
| | | | | |
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
swarm: plan bee for content storage and distribution on web3
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This change imports the Swarm protocol codebase. Compared to the 'swarm'
branch, a few mostly cosmetic changes had to be made:
* The various redundant log message prefixes are gone.
* All files now have LGPLv3 license headers.
* Minor code changes were needed to please go vet and make the tests
pass on Windows.
* Further changes were required to adapt to the go-ethereum develop
branch and its new Go APIs.
Some code has not (yet) been brought over:
* swarm/cmd/bzzhash: will reappear as cmd/bzzhash later
* swarm/cmd/bzzup.sh: will be reimplemented in cmd/bzzup
* swarm/cmd/makegenesis: will reappear somehow
* swarm/examples/album: will move to a separate repository
* swarm/examples/filemanager: ditto
* swarm/examples/files: will not be merged
* swarm/test/*: will not be merged
* swarm/services/swear: will reappear as contracts/swear when needed
|
|\ \ \ \
| |/ / /
|/| | | |
Small docker run example for main README
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
contracts/release: move package release to contracts/
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This change also deletes generator.go, moving the only interesting line
in it into release.go. The binding has been regenerated with abigen from
develop and solc v0.3.6.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
contracts/ens: regenerate binding with solc v0.3.6
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
contracts/chequebook: fix possible reentrancy bug in chequebook contract
|
|/ / / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Godeps: update golang.org/x/...
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
contracts/ens: Add ENS contract binding
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
contracts/chequebook: add chequebook contract wrapper
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The wrapper code is adapted from the swarm/services/chequebook package
with the following mostly cosmetic changes:
* The code now uses the new Go API interfaces to query balances. Some
minor functional changes were required to make this work.
* The package no longer depends on swarm/services/swap/swap. References
to swap.Promise are replaced by interface{}, the base type of Promise.
This is temporary.
* The contract wrapper has been regenerated with latest abigen
and solc v0.3.6.
* There is a new generator that creates the 'deployed code' variable.
* Documentation comments now follow the recommended godoc style.
* [CHEQUEBOOK] log prefixes are gone.
* LGPL license headers have been added to all files.
|
|/ / / / |
|
|\ \ \ \
| |_|/ /
|/| | | |
Stable Go API, part 1
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The need for these functions comes up in code that actually deploys and
uses contracts. As of this commit, they can be used with both
SimulatedBackend and ethclient.
SimulatedBackend gains some additional methods in the process and is now
safe for concurrent use.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
In this commit, contract bindings and their backend start using the
Ethereum Go API interfaces offered by ethclient. This makes ethclient a
suitable replacement for the old remote backend and gets us one step
closer to the final stable Go API that is planned for go-ethereum 1.5.
The changes in detail:
* Pending state is optional for read only contract bindings.
BoundContract attempts to discover the Pending* methods via an
interface assertion. There are a couple of advantages to this:
ContractCaller is just two methods and can be implemented on top of
pretty much anything that provides Ethereum data. Since the backend
interfaces are now disjoint, ContractBackend can simply be declared as
a union of the reader and writer side.
* Caching of HasCode is removed. The caching could go wrong in case of
chain reorganisations and removing it simplifies the code a lot.
We'll figure out a performant way of providing ErrNoCode before the
1.5 release.
* BoundContract now ensures that the backend receives a non-nil context
with every call.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The remote backend is superseded by ethclient.
The nil backend's stated purpose was to enable testing of
accounts/abi/bind. None of its methods actually worked. A much simpler
way to get a crashing backend is to simply pass nil as the backend. With
a one-line change to the generator (removing two explicit interface
assertions), passing nil actually works.
Removing these backends means that less changes are required later.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
ethclient implements the proposed Ethereum Go API. There are no tests at
the moment, a suite that excercises all implementations of the API will
be added later.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
- returned headers didn't include mixHash
- returned transactions didn't include signature fields
- empty transaction input was returned as "", but should be "0x"
- returned receipts didn't include the bloom filter
- "root" in receipts was missing 0x prefix
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
In this commit, core/types's types learn how to encode and decode
themselves as JSON. The encoding is very similar to what the RPC API
uses. The RPC API is missing some output fields (e.g. transaction
signature values) which will be added to the API in a later commit. Some
fields that the API generates are ignored by the decoder methods here.
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
ValidateFields was introduced before the rlp decoder disallowed nil
values. Decoding RLP will never return nil values, there is no need
to check for them.
|
|\ \ \
| | | |
| | | | |
internal/ethapi: Fix bug in opCodeWrapper usage
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
internal/ethapi: Improve tracer error reporting and serialization
|
|/ / / |
|
| | | |
|
|\ \ \
| | | |
| | | | |
core/vm, eth: Add support for javascript trace functions
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
(#2924)
|
|\ \ \ \
| |/ / /
|/| | | |
cmd/utils: removed DAO oppose / support message
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
cmd/geth: added copyright and license information
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
As per GNU GPL requirement I've added the copyright and the license
information as a subcommand as well as a copyright notice when
displaying the help command.
|
|\ \ \
| | | |
| | | | |
core: Refactor tracing to make Tracer the main interface
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This CL makes several refactors:
- Define a Tracer interface, implementing the `CaptureState` method
- Add the VM environment as the first argument of
`Tracer.CaptureState`
- Rename existing functionality `StructLogger` an make it an
implementation of `Tracer`
- Delete `StructLogCollector` and make `StructLogger` collect the logs
directly
- Change all callers to use the new `StructLogger` where necessary and
extract logs from that.
- Deletes the apparently obsolete and likely nonfunctional 'TraceCall'
from the eth API.
Callers that only wish accumulated logs can use the `StructLogger`
implementation straightforwardly. Callers that wish to efficiently
capture VM traces and operate on them without excessive copying can now
implement the `Tracer` interface to receive VM state at each step and
do with it as they wish.
This CL also removes the accumulation of logs from the vm.Environment;
this was necessary as part of the refactor, but also simplifies it by
removing a responsibility that doesn't directly belong to the
Environment.
|
|\ \ \
| |/ /
|/| | |
eth/fetcher: fix a log message formatting issue
|
|/ / |
|
|\ \
| | |
| | | |
all: clean up tech debt left behind by the API split
|
| | |
| | |
| | |
| | |
| | | |
This ensures that package core doesn't depend on package accounts and
resolves an age-old TODO.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Support for legacy version 0.9.x is gone. The compiler version is no
longer cached. Compilation results (and the version) are read directly
from stdout using the --combined-json flag. As a workaround for
ethereum/solidity#651, source code is written to a temporary file before
compilation.
Integration of solc in package ethapi and cmd/abigen is now much simpler
because the compiler wrapper is no longer passed around as a pointer.
Fixes #2806, accidentally
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The account manager was previously created by packge cmd/utils as part
of flag processing and then passed down into eth.Ethereum through its
config struct. Since we are starting to create nodes which do not have
eth.Ethereum as a registered service, the code was rearranged to
register the account manager as its own service. Making it a service is
ugly though and it doesn't really fix the root cause: creating nodes
without eth.Ethereum requires duplicating lots of code.
This commit splits utils.MakeSystemNode into three functions, making
creation of other node/service configurations easier. It also moves the
account manager into Node so it can be used by those configurations
without requiring package eth.
|
|\ \ \
| | | |
| | | | |
rpc: refactor subscriptions and filters
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
TravisCI: add Go 1.7 targets, bump PPA to 1.7 too
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
core: ensure the canonical block is written before the canonical hash is set
|
|/ / / |
|
| | | |
|
|\ \ \
| | | |
| | | | |
eth/downloader: fewer headers and futures too in ancestor lookup
|
| | | | |
|
| |/ /
|/| |
| | | |
Fixes #2872
|
|\ \ \
| | | |
| | | | |
rpc: client bug fixes
|
| | | |
| | | |
| | | |
| | | |
| | | | |
It's inconsistent not to pass it and most callers will
work with contexts anyway.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
I initially made the client block if the 100-element buffer was
exceeded. It turns out that this is inconvenient for simple uses of the
client which subscribe and perform calls on the same goroutine, e.g.
client, _ := rpc.Dial(...)
ch := make(chan int) // note: no buffer
sub, _ := client.EthSubscribe(ch, "something")
for event := range ch {
client.Call(...)
}
This innocent looking code will lock up if the server suddenly decides
to send 2000 notifications. In this case, the client's main loop won't
accept the call because it is trying to deliver a notification to ch.
The issue is kind of hard to explain in the docs and few people will
actually read them. Buffering is the simple option and works with close
to no overhead for subscribers that always listen.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
eth/downloader: abort sync if master drops (timeout prev)
|
| | |/ /
| |/| | |
|
|\ \ \ \
| | | | |
| | | | | |
eth, eth/downloader: don't forward the DAO challenge header
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
eth, eth/downloader: better remote head tracking
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Makefile, build: move cross compilation into ci.go
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
core/vm: hide ecrecover error message
|
| | |_|/ /
| |/| | |
| | | | |
| | | | | |
Fixes #2825
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Godeps: update github.com/rjeczalik/notify to f627deca7a51
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
Fixes #2829
|
|\ \ \ \ \
| | | | | |
| | | | | | |
node, p2p, internal: Add ability to remove peers via admin interface
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | | |
Fix README typo
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
"fine graned" -> "fine-grained"
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
containers/docker: use shallow clone of single branch
|
| | | | | |
|
|/ / / / |
|
|\ \ \ \
| |_|/ /
|/| | | |
eth/downloader: fix the stall checks/drops during sync
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
rpc: add new client, use it everywhere
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The new client implementation supports concurrent requests,
subscriptions and replaces the various ad hoc RPC clients
throughout go-ethereum.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
If a batch request contained an invalid method, the server would reply
with a non-batch error response. Fix this by tracking an error for each
batch element.
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The server delayed closing of connections for 3s when stopping. This was
supposed to allow for slow handlers, but it didn't really work. When
geth quits, it will just exit immediately after quitting the server.
Removing the timer makes testing easier because all connections will be
closed after Stop returns.
|
|\ \ \ \
| |/ / /
|/| | | |
eth, eth/downloader, eth/fetcher: delete eth/61 sync code
|
| | | |
| | | |
| | | |
| | | |
| | | | |
The eth/61 protocol was disabled in #2776, this commit removes its
message handlers and hash-chain sync logic.
|
|\ \ \ \
| | | | |
| | | | | |
eth/api: rename signAndSendTransaction to sendTransaction
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
containers/docker: update to alpine 3.4
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
eth: cancel DAO challenge on peer drop (annoying log)
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
Godeps: bump github.com/syndtr/goleveldb/... to ab8b5dcf104
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
Fix #2710 Filter race: concurrent map read and map write
|
| | | | |
| | | | |
| | | | |
| | | | | |
and locking bugs found in its wake.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
cmd/bootnode: Add support for outputting a node's ID on the command line
|
| | |_|_|/
| |/| | | |
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
eth: fixed chaindb upgrade
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
cmd, core, eth, miner, params, tests: finalize the DAO fork
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
circleci: enable docker based hive testing
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
vm: Replace some SstoreClearGas with SstoreResetGas
|
| | |/ /
| |/| | |
|
|\ \ \ \
| | | | |
| | | | | |
Godeps, rpc: switch back to package npipe
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This adds compatibility with Go 1.7, where context has
moved into the standard library.
|
|/ / / /
| | | |
| | | |
| | | |
| | | | |
The named pipe implementation from go-winio has some issues
that need to be addressed before we can use it again.
|
| |/ /
|/| | |
|
|\ \ \
| | | |
| | | | |
core: added CheckNonce() to Message interface
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
eth/downloader: return invalid chain (peer drop) on import fails
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
core: solve a remote-import/local-mine data race
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
README: expand with "Running Geth" section
|
| |/ / / |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
containers/docker/master-alpine: drop gmp dependency
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
eth: disable eth/61 to prepare for more elaborate fork sync algos
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
README: fix build->built typo
|
|/ / /
| | |
| | |
| | | |
(cherry picked from commit e271fd57132763f39c6993a35e6c063aac3af4f1)
|
|\ \ \
| | | |
| | | | |
cmd, common, console, eth, release: drop redundant "full"s
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
eth: separate common and full node-specific API and backend service
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
cmd/geth: fix the import error message
|
| | |_|/
| |/| |
| | | |
| | | | |
cmd/geth: include the error message on import failure
|
|\ \ \ \
| |/ / /
|/| | | |
Revert faulty DAO soft-fork
|
| | | |
| | | |
| | | |
| | | | |
This reverts commit 7a5b571c671e70e0e4807cf971c15e2d1e09d33d.
|
| | | |
| | | |
| | | |
| | | | |
This reverts commit c4de28938ff8c688c4444c8b3e8e28a52cbc62ff.
|
| | | |
| | | |
| | | |
| | | | |
This reverts commit ba784bdf36f2daf7827ec1ec864f3393ba8d86a0.
|
|/ / /
| | |
| | |
| | | |
This reverts commit 1e3a7d4fab36df9382d023519ef10e3c34bafa3b.
|
|\ \ \
| | | |
| | | | |
core: update the DAO soft fork proposal to the final block
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
DAO soft-fork
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This implements a generic approach to enabling soft forks by allowing
anyone to put in hashes of contracts that should not be interacted from.
This will help "The DAO" in their endevour to stop any whithdrawals from
any DAO contract by convincing the mining community to accept their code
hash.
|
|\ \ \ \
| | | | |
| | | | | |
web3ext: Remove old natspec Admin_JS stubs
|
|/ / / /
| | | |
| | | |
| | | | |
This stops them from showing up on the javascript console.
|
|\ \ \ \
| |/ / /
|/| | | |
build: add ci.go, use it everywhere
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
The new build script, ci.go, replaces some of the older shell scripts.
ci.go can compile go-ethereum, run the tests, create release archives
and debian source packages.
|
|\ \ \
| |_|/
|/| | |
README, core, rpc: Fix typos
|
|/ / |
|
|\ \
| | |
| | | |
Godeps: pull in ethash with the big endian build fix
|
| | | |
|
|\ \ \
| | | |
| | | | |
cmd/evm: added --create flag indicating the exec code is to be created
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This fixes an issue if you wanted to test out code deployment rather
than running a piece of code with an argument. This solves it by adding
a --create flag that indicates the Create function should be used rather
than the Call function.
This also adds a statedb.commit call so that the proper state can be
dumped when requested using the --dump flag.
|
|\ \ \ \
| |/ / /
|/| | | |
cmd/utils: add space between "to" and filename
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
accounts/abi: fix uint64 upper range encoding.
|
| | | | |
|
|\ \ \ \
| |_|_|/
|/| | | |
core/state, eth: Updated suicides objects when tracing transactions
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Consensus rules dictate that objects can only be removed during the
finalisation of the transaction (i.e. after all calls have finished).
Thus calling a suicided contract twice from the same transaction:
A->B(S)->ret(A)->B(S) results in 2 suicides. Calling the suicided
object twice from two transactions: A->B(S), A->B, results in only one
suicide and a call to an empty object.
Our current debug tracing functionality replays all transaction that
were executed prior to the targetted transaction in order to provide
the user with an accurate trace.
As a side effect to calling StateDB.IntermediateRoot it also deletes any
suicides objects. Our tracing code never calls this function because it
isn't interested in the intermediate root. Becasue of this it caused a
bug in the tracing code where transactions that were send to priviously
deleted objects resulted in two suicides rather than one suicide and a
call to an empty object.
Fixes #2542
|
|\ \ \ \
| | | | |
| | | | | |
core: improved chain db performance by using sequential keys
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| |_|_|/
|/| | | |
eth/downloader: fix occasional fast sync critical section test fails
|
|/ / / |
|
|\ \ \
| |_|/
|/| | |
cmd: fix CLI package deprecation warnings
|
|/ / |
|
|\ \
| | |
| | | |
cmd/geth: codegansta/cli package renamed to urfave/cli
|
| | | |
|