Felix Lange
65e6319b12
core/vm: use package hexutil for JSON handling
8 years ago
Felix Lange
ec75953f50
common/hexutil: new package for 0x hex encoding
...
The new package is purpose-built to handle the encoding consumed and
produced by the RPC API.
8 years ago
Jeffrey Wilcke
801a13f791
core: fixed unwinding bad hash ( #3347 )
...
Fixed unwinding of bad hashes when already on the canon chain
8 years ago
Péter Szilágyi
eea8d6aa96
Merge pull request #3356 from fjl/accounts-no-watch-on-windows
...
accounts: disable file system watcher on windows
8 years ago
Péter Szilágyi
2b9cd71d67
Merge pull request #3352 from fjl/build-git-tag
...
internal/build: use 'git tag --points-at' to get the current tag
8 years ago
Felix Lange
5df83e3bd9
accounts: disable file system watcher on windows
...
The watcher is unreliable and causes test failures on Windows.
Disable it until we have a better solution.
8 years ago
Jeffrey Wilcke
6061707371
core: eip unit tests ( #3309 )
8 years ago
Felix Lange
20899c05a4
internal/build: use 'git tag --points-at' to get the current tag
...
This should restore support for building with git 1.x.
8 years ago
Péter Szilágyi
4c8c5e2f74
cmd, ethstats, les, mobile, params: native netstats ( #3336 )
8 years ago
Felix Lange
d1a95c643e
Merge pull request #3325 from fjl/p2p-netrestrict
...
Prevent relay of invalid IPs, add --netrestrict
8 years ago
Péter Szilágyi
9c3ea0d32d
Merge pull request #3346 from obscuren/registrar-removal
...
common/registrar, eth: removed registrar (tech debt)
8 years ago
Jeffrey Wilcke
67e0894d9e
common/httpclient, les: removed httpclient
8 years ago
Jeffrey Wilcke
6cc87a31c6
cmd/utils, internal/web3ext: removed httpGet
8 years ago
Jeffrey Wilcke
b8c766a9c5
eth: removed http doc backend api
8 years ago
Péter Szilágyi
66441c9b4b
Merge pull request #3345 from karalabe/cleanup-mobile-crossbuilds
...
Makefile, build: do proper mobile builds, not cross builds
8 years ago
Felix Lange
18d51d1de8
common/registrar: delete the old registrar code
...
The registrar was broken, unmaintained and there is a much better
replacement: ENS.
(cherry picked from commit 6ca8f57b08
)
8 years ago
Felix Lange
01d5fc670b
internal/web3ext: remove registrar-related extensions
...
(cherry picked from commit d54ad55c60
)
8 years ago
Péter Szilágyi
0f1cbfd3da
Makefile, build: do proper mobile builds, not cross builds
8 years ago
Felix Lange
586f10ecb1
cmd/utils, VERSION: 1.5.4 unstable
8 years ago
Felix Lange
978737f5d5
cmd/utils: 1.5.3 stable
8 years ago
Felix Lange
fa0e057f8a
Merge pull request #3341 from obscuren/touch-delete-fix
...
core, core/state: fixed consensus issue added touch revert
8 years ago
Felix Lange
bca7bfa927
tests: update from github.com/ethereum/tests @ f21c49dc816e
8 years ago
Jeffrey Wilcke
12d654a6fc
core, core/state: fixed consensus issue added touch revert
...
Implemented proper touch revert journal entries and copied a Parity
consensus bug in order to remain in sync with the current longest chain.
8 years ago
Péter Szilágyi
8e64e4383c
Merge pull request #3338 from karalabe/miner-driveby-cleanup
...
miner: remove dead code, add gas price getter
8 years ago
Péter Szilágyi
f59d8cde26
Merge pull request #3337 from karalabe/core-driveby-cleanup
...
core: remove dead event
8 years ago
Péter Szilágyi
94c0519be2
miner: remove dead code, add gas price getter
8 years ago
Péter Szilágyi
529c502876
core: remove dead event
8 years ago
Jeffrey Wilcke
c04c8f10f0
core: improved bad block error reporting ( #3320 )
8 years ago
Péter Szilágyi
e05d35e6e0
Merge pull request #3317 from fjl/build-unstable-simplify
...
build, internal/build: simplify unstable build checks
8 years ago
Felix Lange
e1e2df656a
internal/build: add support for git tag in local Environment
...
I didn't add this initially because the command I tried was too slow.
The 'git for-each-ref ...' invocation takes 40ms on my machine. That
ought to be acceptable.
8 years ago
Péter Szilágyi
f7da5b29f0
Merge pull request #3327 from karalabe/cocoapods-version-round2
...
build: remove hash metadata from cocoapod version
8 years ago
Péter Szilágyi
2b4c236773
build: remove hash metadata from cocoapod version
8 years ago
Jeffrey Wilcke
a8ca75738a
core: implemented new ropsten testnet
8 years ago
Jeffrey Wilcke
aad4890082
cmd/geth, core, light, mobile: removed state account StartingNonce
...
All account's nonce start at 0.
8 years ago
Felix Lange
e5edd3b983
cmd/bootnode, cmd/geth, cmd/bzzd: add --netrestrict
8 years ago
Felix Lange
a47341cf96
p2p, p2p/discover, p2p/discv5: add IP network restriction feature
...
The p2p packages can now be configured to restrict all communication to
a certain subset of IP networks. This feature is meant to be used for
private networks.
8 years ago
Felix Lange
e46bda5093
swarm/network: prevent relay of invalid IPs
8 years ago
Felix Lange
a98d1d67d6
p2p/discover, p2p/discv5: prevent relay of invalid IPs and low ports
...
The discovery DHT contains a number of hosts with LAN and loopback IPs.
These get relayed because some implementations do not perform any checks
on the IP.
go-ethereum already prevented relay in most cases because it verifies
that the host actually exists before adding it to the local table. But
this verification causes other issues. We have received several reports
where people's VPSs got shut down by hosting providers because sending
packets to random LAN hosts is indistinguishable from a slow port scan.
The new check prevents sending random packets to LAN by discarding LAN
IPs sent by Internet hosts (and loopback IPs from LAN and Internet
hosts). The new check also blacklists almost all currently registered
special-purpose networks assigned by IANA to avoid inciting random
responses from services in the LAN.
As another precaution against abuse of the DHT, ports below 1024 are now
considered invalid.
8 years ago
Felix Lange
ba2884f343
p2p/discover, p2p/discv5: use netutil.IsTemporaryError
8 years ago
Felix Lange
1d80155d5e
p2p/netutil: new package for network utilities
...
The new package contains three things for now:
- IP network list parsing and matching
- The WSAEMSGSIZE workaround, which is duplicated in p2p/discover and
p2p/discv5.
8 years ago
Péter Szilágyi
a0e42aa4e2
build: mobile CI fixes ( #3322 )
...
* build: use metatags on cocoapods, not prerelease tags
* build: fix Maven and CocoaPods author email addresses
8 years ago
Felix Lange
92959cd4ef
appveyor: use native 32bit go
...
This simplifies the build and should speed it up a bit because the
standard library doesn't need to be cross compiled on the 32bit builder.
8 years ago
sandakersmann
2c802399c3
README: Changed http:// to https:// for swarm link ( #3312 )
...
Changed http:// to https:// on one link in README.md
8 years ago
Felix Lange
8ed72a8470
build: simplify unstable build check
...
ci.go decides whether a build is unstable by looking at the branch and
tag. This causes issues when a GitHub release is created on the master
branch because the build is considered unstable (the CI environment
reports the branch as "master").
Fix this by looking at the tag only. Any tagged build is stable.
8 years ago
Aron Fischer
0d9a8207d6
cmd/bzzup: trim directory in the manifest entry path ( #3299 )
8 years ago
FrankWang
04edbb0703
node: Remove redundant filepath.Join in parsePersistentNodes ( #3300 )
8 years ago
Nick Johnson
e1c1fce92c
cmd/utils, VERSION: 1.5.3 unstable ( #3306 )
8 years ago
Nick Johnson
c8695209f6
core: Don't perform EIP150 hash check on uncles ( #3303 )
8 years ago
Nick Johnson
9b95112a2d
cmd/utils: Set version string to stable ( #3304 )
8 years ago
Viktor Trón
a602c57c8d
README: add documentation for bzz related executables to the table ( #3294 )
8 years ago