-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Upgrade] Go-Ethereum release v1.9.8 #1112
[Upgrade] Go-Ethereum release v1.9.8 #1112
Commits on Aug 21, 2019
-
core/vm, crypto/blake2b: add BLAKE2b compression func at 0x09
The precompile at 0x09 wraps the BLAKE2b F compression function: https://tools.ietf.org/html/rfc7693#section-3.2 The precompile requires 6 inputs tightly encoded, taking exactly 213 bytes, as explained below. - `rounds` - the number of rounds - 32-bit unsigned big-endian word - `h` - the state vector - 8 unsigned 64-bit little-endian words - `m` - the message block vector - 16 unsigned 64-bit little-endian words - `t_0, t_1` - offset counters - 2 unsigned 64-bit little-endian words - `f` - the final block indicator flag - 8-bit word [4 bytes for rounds][64 bytes for h][128 bytes for m][8 bytes for t_0] [8 bytes for t_1][1 byte for f] The boolean `f` parameter is considered as `true` if set to `1`. The boolean `f` parameter is considered as `false` if set to `0`. All other values yield an invalid encoding of `f` error. The precompile should compute the F function as specified in the RFC (https://tools.ietf.org/html/rfc7693#section-3.2) and return the updated state vector `h` with unchanged encoding (little-endian). See EIP-152 for details.
Configuration menu - View commit details
-
Copy full SHA for 2890f06 - Browse repository at this point
Copy the full SHA 2890f06View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1bccafe - Browse repository at this point
Copy the full SHA 1bccafeView commit details
Commits on Aug 22, 2019
-
Merge pull request #19972 from keep-network/istanbul-eip-152-blake2b-…
…f-precompile core/vm, crypto/blake2b: add BLAKE2b compression func at 0x09
Configuration menu - View commit details
-
Copy full SHA for 22fdbee - Browse repository at this point
Copy the full SHA 22fdbeeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8517dd4 - Browse repository at this point
Copy the full SHA 8517dd4View commit details -
Merge pull request #19990 from karalabe/fix-blake2b-386
crypto/blake2b: fix non-amd64 builds
Configuration menu - View commit details
-
Copy full SHA for 5b2c47a - Browse repository at this point
Copy the full SHA 5b2c47aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8e391ce - Browse repository at this point
Copy the full SHA 8e391ceView commit details -
Merge pull request #19992 from karalabe/fix-blake2b-386-2
crypto/blake2b: fix 386, round 2
Configuration menu - View commit details
-
Copy full SHA for ac23073 - Browse repository at this point
Copy the full SHA ac23073View commit details -
core: log chain reorg/split metrics (#18950)
* core: log chain reorg/split metrics * core: report 1-block reorgs on the metrics too
Configuration menu - View commit details
-
Copy full SHA for 7c22994 - Browse repository at this point
Copy the full SHA 7c22994View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1cd5bf0 - Browse repository at this point
Copy the full SHA 1cd5bf0View commit details -
ethdb/dbtest: addd test suite for ethdb backends (#19960)
- Move the existing tests from memorydb into a generalized testsuite that can be run by any ethdb backend implementation. - Add several more test cases to clarify some non-obvious nuances when implementing a custom ethdb backend, such as the behaviour of NewIteratorWithPrefix vs NewIteratorWithStart. - Add leveldb to the testsuite using in-memory storage for fast execution.
Configuration menu - View commit details
-
Copy full SHA for 46ec63b - Browse repository at this point
Copy the full SHA 46ec63bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 060e33f - Browse repository at this point
Copy the full SHA 060e33fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ef5e97 - Browse repository at this point
Copy the full SHA 4ef5e97View commit details -
Merge pull request #19995 from karalabe/ios-notag
build: gomobile automaticall adds the ios tag, don't duplicate
Configuration menu - View commit details
-
Copy full SHA for 1eaf66a - Browse repository at this point
Copy the full SHA 1eaf66aView commit details -
cmd/utils: customize cli.HelpPrinter to fix alignment (#19956)
This copies cli.printHelp but changes minwidth to 38. Custom flag code is improved to print the default value using cli.FlagStringer like all built-in flags do.
Configuration menu - View commit details
-
Copy full SHA for 4d358b9 - Browse repository at this point
Copy the full SHA 4d358b9View commit details -
Configuration menu - View commit details
-
Copy full SHA for b90cdba - Browse repository at this point
Copy the full SHA b90cdbaView commit details -
crypto: add SignatureLength constant and use it everywhere (#19996)
Original change by @jpeletier
Configuration menu - View commit details
-
Copy full SHA for 54b271a - Browse repository at this point
Copy the full SHA 54b271aView commit details -
rpc: enable compression on HTTP transport (#19997)
This change adds support for gzip encoding on HTTP responses. Gzip encoding is used when the client sets the 'accept-encoding: gzip' header. Original change by @brianosaurus, with fixes from @SjonHortensius.
Configuration menu - View commit details
-
Copy full SHA for 961aa05 - Browse repository at this point
Copy the full SHA 961aa05View commit details
Commits on Aug 23, 2019
-
Configuration menu - View commit details
-
Copy full SHA for e126b08 - Browse repository at this point
Copy the full SHA e126b08View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4aeeddc - Browse repository at this point
Copy the full SHA 4aeeddcView commit details -
Merge pull request #19993 from karalabe/istanbul-eip-integration
core/vm: enable istanbul EIPs in the jump table
Configuration menu - View commit details
-
Copy full SHA for c8a1c0a - Browse repository at this point
Copy the full SHA c8a1c0aView commit details -
Configuration menu - View commit details
-
Copy full SHA for e39b2a2 - Browse repository at this point
Copy the full SHA e39b2a2View commit details -
Merge pull request #20004 from karalabe/istanbul-override
cmd, core, eth, les: support --override.istanbul
Configuration menu - View commit details
-
Copy full SHA for cc9eb91 - Browse repository at this point
Copy the full SHA cc9eb91View commit details
Commits on Aug 26, 2019
-
README: change chainID to <arbitrary positive integer> (#20002)
* Change chainId in genesis block to 8888 from 0 Change chainId in genesis block to 8888 from 0 per Moriteru in https://ethereum.stackexchange.com/a/28082/40230. * Replace 8888 with “<arbitrary positive integer>” Per PR review, replace Moriteru’s arbitrary positive integer 8888 with “<arbitrary positive integer>” in chainId field.
Configuration menu - View commit details
-
Copy full SHA for a978adf - Browse repository at this point
Copy the full SHA a978adfView commit details
Commits on Aug 27, 2019
-
les: wait for all task goroutines before dropping the peer (#20010)
* les: wait all task routines before drop the peer * les: address comments * les: fix issue
Configuration menu - View commit details
-
Copy full SHA for 6850259 - Browse repository at this point
Copy the full SHA 6850259View commit details -
Configuration menu - View commit details
-
Copy full SHA for 396f1dd - Browse repository at this point
Copy the full SHA 396f1ddView commit details
Commits on Aug 30, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 292cf7c - Browse repository at this point
Copy the full SHA 292cf7cView commit details -
Merge pull request #20019 from holiman/minor_adminfix
eth: disallow overwrite files via admin.exportChain
Configuration menu - View commit details
-
Copy full SHA for d5bd383 - Browse repository at this point
Copy the full SHA d5bd383View commit details
Commits on Sep 2, 2019
-
Configuration menu - View commit details
-
Copy full SHA for cedf8be - Browse repository at this point
Copy the full SHA cedf8beView commit details -
Configuration menu - View commit details
-
Copy full SHA for af16ca1 - Browse repository at this point
Copy the full SHA af16ca1View commit details
Commits on Sep 3, 2019
-
Merge pull request #19915 from holiman/filltx
internal/ethapi: implement fillTransaction
Configuration menu - View commit details
-
Copy full SHA for b8a9457 - Browse repository at this point
Copy the full SHA b8a9457View commit details -
cmd/utils: reduce light.maxpeers default for clients to 1/10th (#19933)
Currently light.maxpeers is 100 - after this change it's 10 for non-servers. Fixes #19820
Configuration menu - View commit details
-
Copy full SHA for 1611815 - Browse repository at this point
Copy the full SHA 1611815View commit details -
Configuration menu - View commit details
-
Copy full SHA for cfbb969 - Browse repository at this point
Copy the full SHA cfbb969View commit details -
Configuration menu - View commit details
-
Copy full SHA for b4a4a4d - Browse repository at this point
Copy the full SHA b4a4a4dView commit details
Commits on Sep 4, 2019
-
Configuration menu - View commit details
-
Copy full SHA for ce2da83 - Browse repository at this point
Copy the full SHA ce2da83View commit details -
Merge pull request #20033 from karalabe/docker-expose-graphql
Dockerfile: expose GraphQL ports
Configuration menu - View commit details
-
Copy full SHA for 67bfc93 - Browse repository at this point
Copy the full SHA 67bfc93View commit details
Commits on Sep 10, 2019
-
README: accounts in alloc field should exist (#20005)
* Accounts in alloc field must already exist Note that accounts in alloc field must already exist, as pointed out by Simeon Vanov in https://gettoshare.com/2017/10/30/how-to-use-genesis-json-alloc-property/ * Change wording per PR review comment * README: minor fixups
Configuration menu - View commit details
-
Copy full SHA for cea2c80 - Browse repository at this point
Copy the full SHA cea2c80View commit details -
Configuration menu - View commit details
-
Copy full SHA for 49b86a2 - Browse repository at this point
Copy the full SHA 49b86a2View commit details -
Merge pull request #20046 from karalabe/graphql-fix-web-and-decoding
common, graphql: fix hash/address decoding + UI content type
Configuration menu - View commit details
-
Copy full SHA for 4f6bf2f - Browse repository at this point
Copy the full SHA 4f6bf2fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 72d5a27 - Browse repository at this point
Copy the full SHA 72d5a27View commit details -
Merge pull request #20047 from karalabe/counter-to-gauge
core, metrics, p2p: switch some invalid counters to gauges
Configuration menu - View commit details
-
Copy full SHA for 46b437f - Browse repository at this point
Copy the full SHA 46b437fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 72045df - Browse repository at this point
Copy the full SHA 72045dfView commit details -
Merge pull request #20038 from holiman/minor_encodingfix
core/state: optimize some internals during encoding
Configuration menu - View commit details
-
Copy full SHA for 305ed95 - Browse repository at this point
Copy the full SHA 305ed95View commit details -
Configuration menu - View commit details
-
Copy full SHA for 52a967c - Browse repository at this point
Copy the full SHA 52a967cView commit details
Commits on Sep 11, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 91b7349 - Browse repository at this point
Copy the full SHA 91b7349View commit details -
all: make unit tests work with Go 1.13 (#20053)
Most of these changes are related to the Go 1.13 changes to test binary flag handling. * cmd/geth: make attach tests more reliable This makes the test wait for the endpoint to come up by polling it instead of waiting for two seconds. * tests: fix test binary flags for Go 1.13 Calling flag.Parse during package initialization is prohibited as of Go 1.13 and causes test failures. Call it in TestMain instead. * crypto/ecies: remove useless -dump flag in tests * p2p/simulations: fix test binary flags for Go 1.13 Calling flag.Parse during package initialization is prohibited as of Go 1.13 and causes test failures. Call it in TestMain instead. * build: remove workaround for ./... vendor matching This workaround was necessary for Go 1.8. The Go 1.9 release changed the expansion rules to exclude vendored packages. * Makefile: use relative path for GOBIN This makes the "Run ./build/bin/..." line look nicer. * les: fix test binary flags for Go 1.13 Calling flag.Parse during package initialization is prohibited as of Go 1.13 and causes test failures. Call it in TestMain instead.
Configuration menu - View commit details
-
Copy full SHA for 39b0b1a - Browse repository at this point
Copy the full SHA 39b0b1aView commit details
Commits on Sep 12, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 2469c4e - Browse repository at this point
Copy the full SHA 2469c4eView commit details -
Merge pull request #20058 from karalabe/go1.13
travis, Dockerfile, appveyor: bump to Go 1.13
Configuration menu - View commit details
-
Copy full SHA for 71251c7 - Browse repository at this point
Copy the full SHA 71251c7View commit details -
Configuration menu - View commit details
-
Copy full SHA for c02d5bc - Browse repository at this point
Copy the full SHA c02d5bcView commit details -
Merge pull request #20059 from karalabe/ppa-manual-go
build: switch PPA from Gophers dep to manual download
Configuration menu - View commit details
-
Copy full SHA for 8eb646a - Browse repository at this point
Copy the full SHA 8eb646aView commit details -
Configuration menu - View commit details
-
Copy full SHA for efe1237 - Browse repository at this point
Copy the full SHA efe1237View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3b6c990 - Browse repository at this point
Copy the full SHA 3b6c990View commit details
Commits on Sep 13, 2019
-
rlp: improve nil pointer handling (#20064)
* rlp: improve nil pointer handling In both encoder and decoder, the rules for encoding nil pointers were a bit hard to understand, and didn't leave much choice. Since RLP allows two empty values (empty list, empty string), any protocol built on RLP must choose either of these values to represent the null value in a certain context. This change adds choice in the form of two new struct tags, "nilString" and "nilList". These can be used to specify how a nil pointer value is encoded. The "nil" tag still exists, but its implementation is now explicit and defines exactly how nil pointers are handled in a single place. Another important change in this commit is how nil pointers and the Encoder interface interact. The EncodeRLP method was previously called even on nil values, which was supposed to give users a choice of how their value would be handled when nil. It turns out this is a stupid idea. If you create a network protocol containing an object defined in another package, it's better to be able to say that the object should be a list or string when nil in the definition of the protocol message rather than defining the encoding of nil on the object itself. As of this commit, the encoding rules for pointers now take precedence over the Encoder interface rule. I think the "nil" tag will work fine for most cases. For special kinds of objects which are a struct in Go but strings in RLP, code using the object can specify the desired encoding of nil using the "nilString" and "nilList" tags. * rlp: propagate struct field type errors If a struct contained fields of undecodable type, the encoder and decoder would panic instead of returning an error. Fix this by propagating type errors in makeStruct{Writer,Decoder} and add a test.
Configuration menu - View commit details
-
Copy full SHA for 96fb839 - Browse repository at this point
Copy the full SHA 96fb839View commit details -
Configuration menu - View commit details
-
Copy full SHA for 16f0fb7 - Browse repository at this point
Copy the full SHA 16f0fb7View commit details
Commits on Sep 16, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 223b950 - Browse repository at this point
Copy the full SHA 223b950View commit details -
Configuration menu - View commit details
-
Copy full SHA for f49d6e5 - Browse repository at this point
Copy the full SHA f49d6e5View commit details -
Merge pull request #19953 from karalabe/state-accumulate-writes
core/state: accumulate writes and only update tries when must
Configuration menu - View commit details
-
Copy full SHA for aff9869 - Browse repository at this point
Copy the full SHA aff9869View commit details -
common/mclock: clean up AfterFunc support (#20054)
This change adds tests for the virtual clock and aligns the interface with the time package by renaming Cancel to Stop. It also removes the binary search from Stop because it complicates the code unnecessarily.
Configuration menu - View commit details
-
Copy full SHA for b1c3010 - Browse repository at this point
Copy the full SHA b1c3010View commit details -
Merge pull request #20075 from holiman/evm_defaults
cmd/evm: make evm default to all ethash protocol changes
Configuration menu - View commit details
-
Copy full SHA for 8bd64f4 - Browse repository at this point
Copy the full SHA 8bd64f4View commit details
Commits on Sep 17, 2019
-
core: smaller txpool status locking (#20080)
* txpool: smaller lock portion * core/tx_pool: fix data race
Configuration menu - View commit details
-
Copy full SHA for 8d41e88 - Browse repository at this point
Copy the full SHA 8d41e88View commit details -
Configuration menu - View commit details
-
Copy full SHA for 056183c - Browse repository at this point
Copy the full SHA 056183cView commit details -
Merge pull request #20081 from karalabe/txpool-lockless-dedup
core: dedup known transactions without global lock, track metrics
Configuration menu - View commit details
-
Copy full SHA for d4dce43 - Browse repository at this point
Copy the full SHA d4dce43View commit details -
les: multiple server bugfixes (#20079)
* les: detailed relative cost metrics * les: filter txpool relative request statistic * les: initialize price factors * les: increased connected bias to lower churn rate * les: fixed clientPool.setLimits * core: do not use mutex in GetAncestor * les: bump factor db version again * les: add metrics * les, light: minor fixes
Configuration menu - View commit details
-
Copy full SHA for 0ac9bbb - Browse repository at this point
Copy the full SHA 0ac9bbbView commit details
Commits on Sep 18, 2019
-
Configuration menu - View commit details
-
Copy full SHA for f40ff23 - Browse repository at this point
Copy the full SHA f40ff23View commit details -
Merge pull request #20085 from karalabe/txpool-api-fix
core: fix tx dedup return error count
Configuration menu - View commit details
-
Copy full SHA for 7b32d2a - Browse repository at this point
Copy the full SHA 7b32d2aView commit details
Commits on Sep 19, 2019
-
Configuration menu - View commit details
-
Copy full SHA for ad380cd - Browse repository at this point
Copy the full SHA ad380cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2becb99 - Browse repository at this point
Copy the full SHA 2becb99View commit details -
Merge pull request #20091 from karalabe/cht-1.9.4
params: bump CHTs for the 1.9.4 release
Configuration menu - View commit details
-
Copy full SHA for 03c7d8f - Browse repository at this point
Copy the full SHA 03c7d8fView commit details -
Configuration menu - View commit details
-
Copy full SHA for f9eb307 - Browse repository at this point
Copy the full SHA f9eb307View commit details -
Merge pull request #20090 from soc1c/s1-testnet-istanbul
params: activate Istanbul on Ropsten, Rinkeby and Görli
Configuration menu - View commit details
-
Copy full SHA for a6a14f6 - Browse repository at this point
Copy the full SHA a6a14f6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9f98628 - Browse repository at this point
Copy the full SHA 9f98628View commit details -
Merge pull request #20092 from karalabe/vendor-usb-bump
vendor: pull in USB Windows fixes
Configuration menu - View commit details
-
Copy full SHA for c0010f0 - Browse repository at this point
Copy the full SHA c0010f0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 46891c1 - Browse repository at this point
Copy the full SHA 46891c1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 24ef835 - Browse repository at this point
Copy the full SHA 24ef835View commit details -
Configuration menu - View commit details
-
Copy full SHA for 75aec8a - Browse repository at this point
Copy the full SHA 75aec8aView commit details
Commits on Sep 20, 2019
-
core/state: fix state object deep copy (#20100)
deepCopy didn't copy pending storage updates, leading to the creation of blocks with invalid state root.
Configuration menu - View commit details
-
Copy full SHA for 05347b3 - Browse repository at this point
Copy the full SHA 05347b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for a1c09b9 - Browse repository at this point
Copy the full SHA a1c09b9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 63b1802 - Browse repository at this point
Copy the full SHA 63b1802View commit details
Commits on Sep 23, 2019
-
Merge pull request #20096 from skylenet/remove-ef-legacy-bootnodes
params: remove legacy bootnodes
Configuration menu - View commit details
-
Copy full SHA for 311419c - Browse repository at this point
Copy the full SHA 311419cView commit details
Commits on Sep 24, 2019
-
core/state: fix copy-commit-copy (#20113)
* core/state: revert noop finalise, fix copy-commit-copy * core/state: reintroduce net sstore tracking, extend tests for it
Configuration menu - View commit details
-
Copy full SHA for a308f01 - Browse repository at this point
Copy the full SHA a308f01View commit details -
Configuration menu - View commit details
-
Copy full SHA for be500b5 - Browse repository at this point
Copy the full SHA be500b5View commit details -
Merge pull request #20115 from holiman/minor_dashboard_fx
dashboard: log dashboard url
Configuration menu - View commit details
-
Copy full SHA for aca39a6 - Browse repository at this point
Copy the full SHA aca39a6View commit details
Commits on Sep 25, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 32b07e8 - Browse repository at this point
Copy the full SHA 32b07e8View commit details -
p2p/dnsdisc: add implementation of EIP-1459 (#20094)
This adds an implementation of node discovery via DNS TXT records to the go-ethereum library. The implementation doesn't match EIP-1459 exactly, the main difference being that this implementation uses separate merkle trees for tree links and ENRs. The EIP will be updated to match p2p/dnsdisc. To maintain DNS trees, cmd/devp2p provides a frontend for the p2p/dnsdisc library. The new 'dns' subcommands can be used to create, sign and deploy DNS discovery trees.
Configuration menu - View commit details
-
Copy full SHA for 0568e81 - Browse repository at this point
Copy the full SHA 0568e81View commit details
Commits on Sep 26, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 62391dd - Browse repository at this point
Copy the full SHA 62391ddView commit details -
internal/ethapi: support block number or hash on state-related method…
…s (#19491) This change adds support for EIP-1898.
Configuration menu - View commit details
-
Copy full SHA for ad03d98 - Browse repository at this point
Copy the full SHA ad03d98View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a6ef5a - Browse repository at this point
Copy the full SHA 1a6ef5aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2133f18 - Browse repository at this point
Copy the full SHA 2133f18View commit details -
Configuration menu - View commit details
-
Copy full SHA for ead7117 - Browse repository at this point
Copy the full SHA ead7117View commit details -
ethdb/leveldb: disable seek compaction (#20130)
* vendor: update leveldb * ethdb/leveldb: disable seek compaction and add metrics * vendor: udpate latest levledb * ethdb/leveldb: fix typo
Configuration menu - View commit details
-
Copy full SHA for df89233 - Browse repository at this point
Copy the full SHA df89233View commit details
Commits on Sep 27, 2019
-
Configuration menu - View commit details
-
Copy full SHA for a2a6086 - Browse repository at this point
Copy the full SHA a2a6086View commit details
Commits on Sep 30, 2019
-
Merge pull request #20133 from karalabe/measure-subprotocol-traffic
p2p: measure subprotocol bandwidth usage
Configuration menu - View commit details
-
Copy full SHA for 62b43ee - Browse repository at this point
Copy the full SHA 62b43eeView commit details -
Configuration menu - View commit details
-
Copy full SHA for b2f696e - Browse repository at this point
Copy the full SHA b2f696eView commit details
Commits on Oct 2, 2019
-
tests: update test suite for istanbul (#20082)
* update tests for istanbul * tests: updated blockchaintests, see ethereum/tests#637 * tests: update again, hopefully fixed this time * tests: skip time consuming, run legacy tests * tests: update again * build: disable long-running tests on travis * tests: fix formatting nits * tests: I hate github's editor
Configuration menu - View commit details
-
Copy full SHA for 7f5f62a - Browse repository at this point
Copy the full SHA 7f5f62aView commit details -
Configuration menu - View commit details
-
Copy full SHA for c713ea7 - Browse repository at this point
Copy the full SHA c713ea7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e73091 - Browse repository at this point
Copy the full SHA 6e73091View commit details
Commits on Oct 3, 2019
-
Configuration menu - View commit details
-
Copy full SHA for bd05968 - Browse repository at this point
Copy the full SHA bd05968View commit details -
Configuration menu - View commit details
-
Copy full SHA for a73f3f4 - Browse repository at this point
Copy the full SHA a73f3f4View commit details
Commits on Oct 15, 2019
-
cmd/utils: fix command line flag resolve (#20167)
In Geth, we have two sources for configuration: (1) Config file (2) Command line flag Basically geth will first resolve config file and then overwrite configs with command line flags. This issue is: geth should only overwrite configs if flags are truly set. So before we apply any flag to configs, `GlobalIsSet` check is necessary.
Configuration menu - View commit details
-
Copy full SHA for 028af34 - Browse repository at this point
Copy the full SHA 028af34View commit details
Commits on Oct 16, 2019
-
params: check fork ordering when initializing new genesis, fixes #201…
…36 (#20169) prevent users from misconfiguring their nodes so that fork ordering is not preserved.
Configuration menu - View commit details
-
Copy full SHA for c476460 - Browse repository at this point
Copy the full SHA c476460View commit details -
p2p/dnsdisc: update to latest EIP-1459 spec (#20168)
This updates the DNS TXT record format to the latest changes in ethereum/EIPs#2313.
Configuration menu - View commit details
-
Copy full SHA for 7300365 - Browse repository at this point
Copy the full SHA 7300365View commit details
Commits on Oct 17, 2019
-
Configuration menu - View commit details
-
Copy full SHA for d5b79e7 - Browse repository at this point
Copy the full SHA d5b79e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for a28093c - Browse repository at this point
Copy the full SHA a28093cView commit details
Commits on Oct 18, 2019
-
Changed http:// to https:// on links in log/README.md (#20178)
docs: change http to https on links in log/README.md
Configuration menu - View commit details
-
Copy full SHA for 9a77065 - Browse repository at this point
Copy the full SHA 9a77065View commit details -
dashboard: change links in README to https (#20181)
Changed http:// to https:// on links in dashboard/README.md
Configuration menu - View commit details
-
Copy full SHA for b9299bb - Browse repository at this point
Copy the full SHA b9299bbView commit details
Commits on Oct 20, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 08953e4 - Browse repository at this point
Copy the full SHA 08953e4View commit details -
miner: add generate and import unit test (#20111)
This PR adds a new unit test in miner package which will create some blocks from miner and then import into another chain. In this way, we can ensure all blocks generated by Geth miner obey consensus rules.
Configuration menu - View commit details
-
Copy full SHA for d4bb379 - Browse repository at this point
Copy the full SHA d4bb379View commit details
Commits on Oct 21, 2019
-
accounts/abi/bind: take into account gas price during gas estimation …
…(#20189) The gas price was not passed to the `EstimateGas` function. As a result, conditional execution paths depending on `tx.gasprice` could be not correctly processed and we could get invalid gas estimates for contract function calls.
Configuration menu - View commit details
-
Copy full SHA for 538f763 - Browse repository at this point
Copy the full SHA 538f763View commit details
Commits on Oct 24, 2019
-
Configuration menu - View commit details
-
Copy full SHA for db79143 - Browse repository at this point
Copy the full SHA db79143View commit details
Commits on Oct 28, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 72617a0 - Browse repository at this point
Copy the full SHA 72617a0View commit details -
cmd/evm: remove surrounding whitespace in hex input code (#20211)
This way, the output of `evm compile` can be used directly in `evm --codefile code.txt run`, without stripping the trailing newline first.
Configuration menu - View commit details
-
Copy full SHA for 9c81387 - Browse repository at this point
Copy the full SHA 9c81387View commit details -
trie: remove node ordering slice in sync batch (#19929)
When we flush a batch of trie nodes into database during the state sync, we should guarantee that all children should be flushed before parent. Actually the trie nodes commit order is strict by: children -> parent. But when we flush all ready nodes into db, we don't need the order anymore since (1) they are all ready nodes (no more dependency) (2) underlying database provides write atomicity
Configuration menu - View commit details
-
Copy full SHA for ecdbb40 - Browse repository at this point
Copy the full SHA ecdbb40View commit details
Commits on Oct 29, 2019
-
core/asm: assembly parser label fixes (#20210)
* core/asm: Fix encoding of pushed labels EVM uses big-endian byte-order, so to pad a label value to 4 bytes, zeros must be added to the front, not the end. * core/asm: Fix PC calculations when a label is pushed Incrementing PC by 5 is only correct if the label appears after a jump, in which case there is an implicit push. When it appears after an explicit push, PC should only be incremented by 4. * core/asm: Allow JUMP with no argument This way, a label can be pushed explicitly, or loaded from memory to implement a jump table.
Configuration menu - View commit details
-
Copy full SHA for b0b2775 - Browse repository at this point
Copy the full SHA b0b2775View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3eca7b5 - Browse repository at this point
Copy the full SHA 3eca7b5View commit details -
cmd/devp2p, p2p: dial using node iterator, discovery crawler (#20132)
* p2p/enode: add Iterator and associated utilities * p2p/discover: add RandomNodes iterator * p2p: dial using iterator * cmd/devp2p: add discv4 crawler * cmd/devp2p: WIP nodeset filter * cmd/devp2p: fixup lesFilter * core/forkid: add NewStaticFilter * cmd/devp2p: make -eth-network filter actually work * cmd/devp2p: improve crawl timestamp handling * cmd/devp2p: fix typo * p2p/enode: fix comment typos * p2p/discover: fix comment typos * p2p/discover: rename lookup.next to 'advance' * p2p: lower discovery mixer timeout * p2p/enode: implement dynamic FairMix timeouts * cmd/devp2p: add ropsten support in -eth-network filter * cmd/devp2p: tweak crawler log message
Configuration menu - View commit details
-
Copy full SHA for 2c37142 - Browse repository at this point
Copy the full SHA 2c37142View commit details -
Merge pull request #20204 from holiman/fix_downloader_race
eth/downloader: fix data race in downloader
Configuration menu - View commit details
-
Copy full SHA for e306304 - Browse repository at this point
Copy the full SHA e306304View commit details -
Configuration menu - View commit details
-
Copy full SHA for 64571f9 - Browse repository at this point
Copy the full SHA 64571f9View commit details
Commits on Oct 30, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 9641cac - Browse repository at this point
Copy the full SHA 9641cacView commit details -
miner: increase import time allowance (#20217)
Fix the block import unit test which can time out sometimes.
Configuration menu - View commit details
-
Copy full SHA for 5d91acc - Browse repository at this point
Copy the full SHA 5d91accView commit details -
Merge pull request #20140 from karalabe/eth64-handshake-forkid
eth: eth/64 - extend handshake with with fork id
Configuration menu - View commit details
-
Copy full SHA for 93422e9 - Browse repository at this point
Copy the full SHA 93422e9View commit details
Commits on Oct 31, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 8927f77 - Browse repository at this point
Copy the full SHA 8927f77View commit details -
Merge pull request #20225 from karalabe/forkid-eth-handshake-verifica…
…tion-plus cmd/devp2p, core/forkid: make forkid.Filter API uniform
Configuration menu - View commit details
-
Copy full SHA for 12f2a25 - Browse repository at this point
Copy the full SHA 12f2a25View commit details -
params, core/forkid: configure mainnet istanbul block 9069K (#20222)
* params: configure mainnet istanbul block 9069K * core/forkid: add some more test items for mainnet istanbul
Configuration menu - View commit details
-
Copy full SHA for 9278951 - Browse repository at this point
Copy the full SHA 9278951View commit details -
accounts/abi: add internalType information and fix issues (#20179)
* accounts/abi: fix various issues The fixed issues include: (1) If there is no return in a call function, unpack should return nil error (2) For some functions which have struct array as parameter, it will also be detected and generate the struct definition (3) For event, if it has non-indexed parameter, the parameter name will also be assigned if empty. Also the internal struct will be detected and generate struct defition if not exist. (4) Fix annotation generation in event function * accounts/abi: add new abi field internalType * accounts: address comments and add tests * accounts/abi: replace strings.ReplaceAll with strings.Replace
Configuration menu - View commit details
-
Copy full SHA for 44b74cf - Browse repository at this point
Copy the full SHA 44b74cfView commit details
Commits on Nov 2, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 86fe283 - Browse repository at this point
Copy the full SHA 86fe283View commit details -
les: rework clientpool (#20077)
* les: rework clientpool
Configuration menu - View commit details
-
Copy full SHA for 0ce5e11 - Browse repository at this point
Copy the full SHA 0ce5e11View commit details
Commits on Nov 4, 2019
-
Merge pull request #20231 from SamuelMarks/go1.13.4
appveyor: bump to Go 1.13.4
Configuration menu - View commit details
-
Copy full SHA for 0ff7380 - Browse repository at this point
Copy the full SHA 0ff7380View commit details -
cmd/puppeth: integrate istanbul into puppeth (#19926)
* cmd/puppeth: integrate istanbul into puppeth * cmd/puppeth: address comment * cmd/puppeth: use hexutil.Big for fork indicator * cmd/puppeth: finalize istanbul fork * cmd/puppeth: fix 2200 for parity, rename is to eip1283ReenableTransition * cmd/puppeth: fix eip1108 * cmd/puppeth: add blake2f for parity * cmd/puppeth: add aleth istanbul precompiled * cmd/puppeth: use hexutil.Big * cmd/puppeth: fix unit tests * cmd/puppeth: update testdata
Configuration menu - View commit details
-
Copy full SHA for 7a6d5d0 - Browse repository at this point
Copy the full SHA 7a6d5d0View commit details -
core/evm: avoid copying memory for input in calls (#20177)
* core/evm, contracts: avoid copying memory for input in calls + make ecrecover not modify input buffer * core/vm: optimize mstore a bit * core/vm: change Get -> GetCopy in vm memory access
Configuration menu - View commit details
-
Copy full SHA for b566cfd - Browse repository at this point
Copy the full SHA b566cfdView commit details
Commits on Nov 5, 2019
-
travis, build, internal: use own Go bundle for PPA builds (#20240)
* build: bump PPAs to Go 1.13 (via longsleep), keep Trusty on 1.11 * travis, build, vendor: use own Go bundle for PPA builds * travis, build, internal, vendor: smarter Go bundler, own untar * build: updated ci-notes with new Go bundling, only make, don't test
Configuration menu - View commit details
-
Copy full SHA for 734e00a - Browse repository at this point
Copy the full SHA 734e00aView commit details -
Configuration menu - View commit details
-
Copy full SHA for c702bd7 - Browse repository at this point
Copy the full SHA c702bd7View commit details
Commits on Nov 6, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 9948724 - Browse repository at this point
Copy the full SHA 9948724View commit details -
Merge pull request #20248 from karalabe/cht-1.9.7
params: hard-code new CHTs for the 1.9.7 release
Configuration menu - View commit details
-
Copy full SHA for fc3661f - Browse repository at this point
Copy the full SHA fc3661fView commit details -
les: fix and slim the unit tests of les (#20247)
* les: loose restriction of unit tests * les: update unit tests * les, light: slim the unit tests
Configuration menu - View commit details
-
Copy full SHA for b9bac1f - Browse repository at this point
Copy the full SHA b9bac1fView commit details
Commits on Nov 7, 2019
-
Configuration menu - View commit details
-
Copy full SHA for a718daa - Browse repository at this point
Copy the full SHA a718daaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4b8f56c - Browse repository at this point
Copy the full SHA 4b8f56cView commit details -
Configuration menu - View commit details
-
Copy full SHA for adf007d - Browse repository at this point
Copy the full SHA adf007dView commit details
Commits on Nov 8, 2019
-
travis: enable test suite on ARM64 (#20219)
* travis: Enable ARM support * Include fixes from 20039 * Add a trace to debug the invalid lookup issue * Try increasing the timeout to see if the arm test passes * Investigate the resolver issue * Increase arm64 timeout for clique test * increase timeout in tests for arm64 * Only test the failing tests * Review feedback: don't export epsilon * Remove investigation tricks+include fjl's feeback * Revert the retry ahead of using the mock resolver * Fix rebase errors
Configuration menu - View commit details
-
Copy full SHA for de2259d - Browse repository at this point
Copy the full SHA de2259dView commit details
Commits on Nov 13, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 6f1a600 - Browse repository at this point
Copy the full SHA 6f1a600View commit details -
dashboard: send current block to the dashboard client (#19762)
This adds all dashboard changes from the last couple months. We're about to remove the dashboard, but decided that we should get all the recent work in first in case anyone wants to pick up this project later on. * cmd, dashboard, eth, p2p: send peer info to the dashboard * dashboard: update npm packages, improve UI, rebase * dashboard, p2p: remove println, change doc * cmd, dashboard, eth, p2p: cleanup after review * dashboard: send current block to the dashboard client
Configuration menu - View commit details
-
Copy full SHA for 4ea9b62 - Browse repository at this point
Copy the full SHA 4ea9b62View commit details -
miner: increase worker test timeout (#20268)
TestEmptyWork* occasionally fails due to timeout. Increase the timeout.
Configuration menu - View commit details
-
Copy full SHA for 22e3bbb - Browse repository at this point
Copy the full SHA 22e3bbbView commit details -
les: implement server priority API (#20070)
This PR implements the LES server RPC API. Methods for server capacity, client balance and client priority management are provided.
Configuration menu - View commit details
-
Copy full SHA for bf5c6b2 - Browse repository at this point
Copy the full SHA bf5c6b2View commit details
Commits on Nov 14, 2019
-
accounts/abi/bind, cmd/abigen: implement alias for abigen (#20244)
* accounts/abi/bind, cmd/abigen: implement alias for abigen * accounts/abi/bind: minor fixes * accounts/abi/bind: address comments * cmd/abigen: address comments * accounts/abi/bind: print error log when identifier collision * accounts/abi/bind: address comments * accounts/abi/bind: address comment
Configuration menu - View commit details
-
Copy full SHA for f8a95d9 - Browse repository at this point
Copy the full SHA f8a95d9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9504c5c - Browse repository at this point
Copy the full SHA 9504c5cView commit details -
cmd/faucet: use github.com/gorilla/websocket (#20283)
golang.org/x/net/websocket is unmaintained, and we have already switched to using github.com/gorilla/websocket for package rpc.
Configuration menu - View commit details
-
Copy full SHA for 987648b - Browse repository at this point
Copy the full SHA 987648bView commit details -
dashboard: remove the dashboard (#20279)
This removes the dashboard project. The dashboard was an experimental browser UI for geth which displayed metrics and chain information in real time. We are removing it because it has marginal utility and nobody on the team can maintain it. Removing the dashboard removes a lot of dependency code and shaves 6 MB off the geth binary size.
Configuration menu - View commit details
-
Copy full SHA for afe0b65 - Browse repository at this point
Copy the full SHA afe0b65View commit details -
Configuration menu - View commit details
-
Copy full SHA for 765fe44 - Browse repository at this point
Copy the full SHA 765fe44View commit details -
Configuration menu - View commit details
-
Copy full SHA for 49d1a03 - Browse repository at this point
Copy the full SHA 49d1a03View commit details -
Configuration menu - View commit details
-
Copy full SHA for f03b2db - Browse repository at this point
Copy the full SHA f03b2dbView commit details
Commits on Nov 15, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 738b51a - Browse repository at this point
Copy the full SHA 738b51aView commit details
Commits on Nov 17, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 51c3290 - Browse repository at this point
Copy the full SHA 51c3290View commit details -
cmd/evm: Allow loading input from file (#20273)
Make it possible to load input from a file. Simlar to `--code` / `--codefile`, have `--input`/`--inputfile`.
Configuration menu - View commit details
-
Copy full SHA for 9e71f55 - Browse repository at this point
Copy the full SHA 9e71f55View commit details
Commits on Nov 18, 2019
-
rpc, p2p/simulations: use github.com/gorilla/websocket (#20289)
* rpc: improve codec abstraction rpc.ServerCodec is an opaque interface. There was only one way to get a codec using existing APIs: rpc.NewJSONCodec. This change exports newCodec (as NewFuncCodec) and NewJSONCodec (as NewCodec). It also makes all codec methods non-public to avoid showing internals in godoc. While here, remove codec options in tests because they are not supported anymore. * p2p/simulations: use github.com/gorilla/websocket This package was the last remaining user of golang.org/x/net/websocket. Migrating to the new library wasn't straightforward because it is no longer possible to treat WebSocket connections as a net.Conn. * vendor: delete golang.org/x/net/websocket * rpc: fix godoc comments and run gofmt
Configuration menu - View commit details
-
Copy full SHA for 7c4a4eb - Browse repository at this point
Copy the full SHA 7c4a4ebView commit details -
build: use golangci-lint (#20295)
* build: use golangci-lint This changes build/ci.go to download and run golangci-lint instead of gometalinter. * core/state: fix unnecessary conversion * p2p/simulations: fix lock copying (found by go vet) * signer/core: fix unnecessary conversions * crypto/ecies: remove unused function cmpPublic * core/rawdb: remove unused function print * core/state: remove unused function xTestFuzzCutter * core/vm: disable TestWriteExpectedValues in a different way * core/forkid: remove unused function checksum * les: remove unused type proofsData * cmd/utils: remove unused functions prefixedNames, prefixFor * crypto/bn256: run goimports * p2p/nat: fix goimports lint issue * cmd/clef: avoid using unkeyed struct fields * les: cancel context in testRequest * rlp: delete unreachable code * core: gofmt * internal/build: simplify DownloadFile for Go 1.11 compatibility * build: remove go test --short flag * .travis.yml: disable build cache * whisper/whisperv6: fix ineffectual assignment in TestWhisperIdentityManagement * .golangci.yml: enable goconst and ineffassign linters * build: print message when there are no lint issues * internal/build: refactor download a bit
Configuration menu - View commit details
-
Copy full SHA for 6894864 - Browse repository at this point
Copy the full SHA 6894864View commit details -
travis: remove traces and use travis_wait in ARM build (#20296)
* travis: remove debug traces * travis: Add travis_wait to the test run * travis: increase travis_wait time
Configuration menu - View commit details
-
Copy full SHA for 11d09fd - Browse repository at this point
Copy the full SHA 11d09fdView commit details -
core: s/isEIP155/isHomestead/g (fix IntrinsicGas signature var name) …
…(#20300) * core: s/isEIP155/isEIP2/ (fix) This signature variable name reflects a spec'd change in gas cost for creating contracts as documented in EIP2 (Homestead HF). https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2.md#specification * core: s/isEIP2/sIsHomestead/g Use isHomestead since Homestead is what the caller and rest of the code uses.
Configuration menu - View commit details
-
Copy full SHA for 57d6976 - Browse repository at this point
Copy the full SHA 57d6976View commit details -
Configuration menu - View commit details
-
Copy full SHA for 422604b - Browse repository at this point
Copy the full SHA 422604bView commit details -
Configuration menu - View commit details
-
Copy full SHA for b02afb6 - Browse repository at this point
Copy the full SHA b02afb6View commit details -
build: add test cmd flag -v for verbose logs (#20298)
Adds flags akin to -coverage flag enabling the test runner to use go test's -v flag, signaling verbose test log output.
Configuration menu - View commit details
-
Copy full SHA for 190fb81 - Browse repository at this point
Copy the full SHA 190fb81View commit details -
Configuration menu - View commit details
-
Copy full SHA for a3d263d - Browse repository at this point
Copy the full SHA a3d263dView commit details -
consensus/clique: add clique_status API method (#20103)
This PR introduces clique_status which gives info about the health of the clique network. It's currently a bit PITA to find out how a clique network is performing, and it can easily happen that sealers drop off -- and everything is 'fine' until one more signer drops off, and the network suddenly halts. The new method provides the following stats: - Which signers are currently active, and have signed blocks in the last N (set to 64) blocks? - How many blocks has each signer signed? - What is the difficulty in the last N blocks, compared to the theoretical maximum?
Configuration menu - View commit details
-
Copy full SHA for 3f4a875 - Browse repository at this point
Copy the full SHA 3f4a875View commit details -
consensus/clique: fix struct tags for status API (#20316)
Also unexport the status struct.
Configuration menu - View commit details
-
Copy full SHA for c5c5e0d - Browse repository at this point
Copy the full SHA c5c5e0dView commit details
Commits on Nov 19, 2019
-
cmd/ethkey: fix file permissions in changepassword command (#20313)
Found by staticcheck.
Configuration menu - View commit details
-
Copy full SHA for dfe8912 - Browse repository at this point
Copy the full SHA dfe8912View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5fefe39 - Browse repository at this point
Copy the full SHA 5fefe39View commit details -
core/rawdb: check hash before return data from ancient db (#20195)
* core/rawdb: check hash before return data from ancient db * core/rawdb: fix lint * core/rawdb: calculate the hash in the fly
Configuration menu - View commit details
-
Copy full SHA for b9c90c5 - Browse repository at this point
Copy the full SHA b9c90c5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b63383 - Browse repository at this point
Copy the full SHA 0b63383View commit details -
Configuration menu - View commit details
-
Copy full SHA for c013192 - Browse repository at this point
Copy the full SHA c013192View commit details -
Configuration menu - View commit details
-
Copy full SHA for 94e8250 - Browse repository at this point
Copy the full SHA 94e8250View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7f70a70 - Browse repository at this point
Copy the full SHA 7f70a70View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3b0f348 - Browse repository at this point
Copy the full SHA 3b0f348View commit details -
Configuration menu - View commit details
-
Copy full SHA for ac5e28e - Browse repository at this point
Copy the full SHA ac5e28eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9e8cc00 - Browse repository at this point
Copy the full SHA 9e8cc00View commit details -
Configuration menu - View commit details
-
Copy full SHA for df206d2 - Browse repository at this point
Copy the full SHA df206d2View commit details -
internal/web3ext, les: update clique JS and make it work with the lig…
…ht client (#20318) Also fix the input formatter on clique_getSnapshot and clique_getSigners so that integers as well as hex number strings are accepted.
Configuration menu - View commit details
-
Copy full SHA for 9c6cf96 - Browse repository at this point
Copy the full SHA 9c6cf96View commit details
Commits on Nov 20, 2019
-
rpc: remove 'exported or builtin' restriction for parameters (#20332)
* rpc: remove 'exported or builtin' restriction for parameters There is no technial reason for this restriction because package reflect can create values of any type. Requiring parameters and return values to be exported causes a lot of noise in package exports. * rpc: fix staticcheck warnings
Configuration menu - View commit details
-
Copy full SHA for 8008c5b - Browse repository at this point
Copy the full SHA 8008c5bView commit details -
Configuration menu - View commit details
-
Copy full SHA for f71e85b - Browse repository at this point
Copy the full SHA f71e85bView commit details -
miner: fix data race in tests (#20310)
* miner: fix data race in tests miner: fix linter * miner: address comment
Configuration menu - View commit details
-
Copy full SHA for 9b59c75 - Browse repository at this point
Copy the full SHA 9b59c75View commit details -
Configuration menu - View commit details
-
Copy full SHA for b7ba944 - Browse repository at this point
Copy the full SHA b7ba944View commit details -
Merge pull request #20261 from holiman/less_querying
internal/ethapi: don't query wallets at every execution of gas estimation
Configuration menu - View commit details
-
Copy full SHA for 3a4a3d0 - Browse repository at this point
Copy the full SHA 3a4a3d0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 15fb780 - Browse repository at this point
Copy the full SHA 15fb780View commit details -
Configuration menu - View commit details
-
Copy full SHA for dfdb204 - Browse repository at this point
Copy the full SHA dfdb204View commit details -
Configuration menu - View commit details
-
Copy full SHA for f4ec854 - Browse repository at this point
Copy the full SHA f4ec854View commit details -
Configuration menu - View commit details
-
Copy full SHA for b3d6304 - Browse repository at this point
Copy the full SHA b3d6304View commit details -
Configuration menu - View commit details
-
Copy full SHA for e1dcea8 - Browse repository at this point
Copy the full SHA e1dcea8View commit details -
Configuration menu - View commit details
-
Copy full SHA for a7dfaa0 - Browse repository at this point
Copy the full SHA a7dfaa0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8bd5bb8 - Browse repository at this point
Copy the full SHA 8bd5bb8View commit details -
Configuration menu - View commit details
-
Copy full SHA for f8790b9 - Browse repository at this point
Copy the full SHA f8790b9View commit details -
tests: refactor TestState to dedupe walk callback
Minor refactoring.
Configuration menu - View commit details
-
Copy full SHA for b8ced9e - Browse repository at this point
Copy the full SHA b8ced9eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 75e029d - Browse repository at this point
Copy the full SHA 75e029dView commit details -
Configuration menu - View commit details
-
Copy full SHA for b4bc3b3 - Browse repository at this point
Copy the full SHA b4bc3b3View commit details -
Merge pull request #20338 from etclabscore/feat/statetests-dedupe-wal…
…k-refactor tests: refactor TestState to dedupe walk callback
Configuration menu - View commit details
-
Copy full SHA for c5b46a7 - Browse repository at this point
Copy the full SHA c5b46a7View commit details -
cmd/puppeth: x-spec nonce data type, use types.BlockNonce
Refactors to use existing BlockNonce type instead of hand-rolled bytes logic.
Configuration menu - View commit details
-
Copy full SHA for 59177bc - Browse repository at this point
Copy the full SHA 59177bcView commit details
Commits on Nov 21, 2019
-
Merge pull request #20339 from etclabscore/fix/cmd-puppeth-blocknonce…
…-type cmd/puppeth: x-spec nonce data type, use types.BlockNonce
Configuration menu - View commit details
-
Copy full SHA for 7be89a7 - Browse repository at this point
Copy the full SHA 7be89a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 216ff5a - Browse repository at this point
Copy the full SHA 216ff5aView commit details -
Merge pull request #20350 from holiman/puppeth_ssh
cmd/puppeth: make ssh prompt more user-friendly
Configuration menu - View commit details
-
Copy full SHA for f56f969 - Browse repository at this point
Copy the full SHA f56f969View commit details -
Configuration menu - View commit details
-
Copy full SHA for 72e62ef - Browse repository at this point
Copy the full SHA 72e62efView commit details -
go.mod: switch to Go modules (#20311)
* go.mod, vendor: switch to Go modules * travis: explicitly enable go modules in Go 1.11 and 1.12 * accounts/abi/bind: switch binding test to go modules * travis, build: aggregate and upload go mod dependencies for PPA * go.mod: tidy up the modules to avoid xgo writes to go.sum * build, internal/build: drop own file/folder copier * travis: fake build ppa only for go module dependencies * mobile: fix CopyFile switch to package cp * build, travis: use ephemeral debsrc GOPATH to get mod deps
Configuration menu - View commit details
-
Copy full SHA for 89ab8a7 - Browse repository at this point
Copy the full SHA 89ab8a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 475ae8b - Browse repository at this point
Copy the full SHA 475ae8bView commit details -
Merge pull request #20356 from karalabe/ppa-fix-cigo
build: pull in ci.go dependencies for the PPA builder
Configuration menu - View commit details
-
Copy full SHA for 0754100 - Browse repository at this point
Copy the full SHA 0754100View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ec5ab4 - Browse repository at this point
Copy the full SHA 0ec5ab4View commit details -
Configuration menu - View commit details
-
Copy full SHA for b6d4f6b - Browse repository at this point
Copy the full SHA b6d4f6bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b558ad - Browse repository at this point
Copy the full SHA 5b558adView commit details -
Merge pull request #20360 from karalabe/ppa-fix-cigo-clean
build: skip go clean on PPA, messes with the module trick
Configuration menu - View commit details
-
Copy full SHA for c1db636 - Browse repository at this point
Copy the full SHA c1db636View commit details -
Configuration menu - View commit details
-
Copy full SHA for bcc1234 - Browse repository at this point
Copy the full SHA bcc1234View commit details -
accounts/abi: fix staticcheck warnings (#20358)
* accounts/abi: fix staticcheck warnings * accounts/abi: restore unused field for test
Configuration menu - View commit details
-
Copy full SHA for 36a684c - Browse repository at this point
Copy the full SHA 36a684cView commit details
Commits on Nov 22, 2019
-
core/state: fix staticcheck warnings (#20357)
Also remove dependency on gopkg.in/check.v1 in tests.
Configuration menu - View commit details
-
Copy full SHA for dd21f07 - Browse repository at this point
Copy the full SHA dd21f07View commit details -
Configuration menu - View commit details
-
Copy full SHA for 58f2ce8 - Browse repository at this point
Copy the full SHA 58f2ce8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0abcf03 - Browse repository at this point
Copy the full SHA 0abcf03View commit details -
p2p/discv5: add deprecation warning and remove unused code (#20367)
* p2p/discv5: add deprecation warning and remove unused code * p2p/discv5: remove unused variables
Configuration menu - View commit details
-
Copy full SHA for fdff182 - Browse repository at this point
Copy the full SHA fdff182View commit details
Commits on Nov 23, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 5d21667 - Browse repository at this point
Copy the full SHA 5d21667View commit details -
core/asm: allow numbers in labels (#20362)
Numbers were already allowed when creating labels, just not when referencing them.
Configuration menu - View commit details
-
Copy full SHA for 3a0480e - Browse repository at this point
Copy the full SHA 3a0480eView commit details
Commits on Nov 24, 2019
-
Configuration menu - View commit details
-
Copy full SHA for f06ae5c - Browse repository at this point
Copy the full SHA f06ae5cView commit details -
Configuration menu - View commit details
-
Copy full SHA for f5a68a4 - Browse repository at this point
Copy the full SHA f5a68a4View commit details
Commits on Nov 25, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 9d67222 - Browse repository at this point
Copy the full SHA 9d67222View commit details -
cmd/geth: remove network id from version cmd
It was reflective only of the Default setting, and not chain aware.
Configuration menu - View commit details
-
Copy full SHA for d9d2a4e - Browse repository at this point
Copy the full SHA d9d2a4eView commit details -
Merge pull request #20385 from etclabscore/fix/version-cmd-networkid
cmd/geth: remove network id from version cmd
Configuration menu - View commit details
-
Copy full SHA for 9ef90db - Browse repository at this point
Copy the full SHA 9ef90dbView commit details -
rlp: fix staticcheck warnings (#20368)
* rlp: fix staticcheck warnings * rlp: fix ExampleDecode test
Configuration menu - View commit details
-
Copy full SHA for 44b4164 - Browse repository at this point
Copy the full SHA 44b4164View commit details -
Configuration menu - View commit details
-
Copy full SHA for b26eedf - Browse repository at this point
Copy the full SHA b26eedfView commit details -
accounts/keystore: fix staticcheck warnings (#20373)
* accounts/keystore: fix staticcheck warnings * review feedback
Configuration menu - View commit details
-
Copy full SHA for 8c1e8de - Browse repository at this point
Copy the full SHA 8c1e8deView commit details
Commits on Nov 26, 2019
-
p2p/discover: slow down lookups on empty table (#20389)
* p2p/discover: slow down lookups on empty table * p2p/discover: wake from slowdown sleep when table is closed
Configuration menu - View commit details
-
Copy full SHA for 2e98706 - Browse repository at this point
Copy the full SHA 2e98706View commit details -
Configuration menu - View commit details
-
Copy full SHA for 878e35b - Browse repository at this point
Copy the full SHA 878e35bView commit details -
Configuration menu - View commit details
-
Copy full SHA for d62e9b2 - Browse repository at this point
Copy the full SHA d62e9b2View commit details
Commits on May 14, 2020
-
raft: read role change from rawNode().Ready() channel.
use etcd/raft/StateType to compare role
amalraj.manigmail.com committedMay 14, 2020 Configuration menu - View commit details
-
Copy full SHA for 4d4b143 - Browse repository at this point
Copy the full SHA 4d4b143View commit details
Commits on May 15, 2020
-
Merge branch 'goeth_v1.9.8' into quorum-geth-1.9.8-upgrade
# Conflicts: # .github/CODEOWNERS # .travis.yml # Dockerfile # Makefile # README.md # accounts/abi/abi_test.go # accounts/abi/bind/auth.go # accounts/abi/bind/backends/simulated.go # accounts/abi/bind/backends/simulated_test.go # accounts/abi/bind/base.go # accounts/abi/bind/bind.go # accounts/abi/bind/bind_test.go # accounts/abi/bind/template.go # accounts/external/backend.go # build/ci.go # build/deb/ethereum/deb.rules # cmd/abigen/main.go # cmd/clef/main.go # cmd/geth/chaincmd.go # cmd/geth/config.go # cmd/geth/consolecmd_test.go # cmd/geth/main.go # cmd/geth/misccmd.go # cmd/geth/retesteth.go # cmd/geth/usage.go # cmd/puppeth/genesis.go # cmd/puppeth/genesis_test.go # cmd/puppeth/testdata/stureby_parity.json # cmd/puppeth/wizard_genesis.go # cmd/utils/customflags.go # cmd/utils/flags.go # cmd/utils/flags_test.go # common/hexutil/json.go # common/types.go # consensus/clique/clique.go # consensus/istanbul/core/events.go # consensus/istanbul/core/final_committed.go # consensus/istanbul/events.go # console/console.go # containers/docker/develop-alpine/Dockerfile_BACKUP_30347 # containers/docker/develop-alpine/Dockerfile_REMOTE_30347 # core/block_validator.go # core/blockchain.go # core/blockchain_test.go # core/chain_makers.go # core/error.go # core/forkid/forkid.go # core/genesis.go # core/helper_test.go # core/rawdb/accessors_chain.go # core/rawdb/accessors_chain_test.go # core/rawdb/database_quorum_test.go # core/rawdb/freezer.go # core/rawdb/freezer_table_test.go # core/state/dump.go # core/state/state_object.go # core/state/state_object_test.go # core/state/state_test.go # core/state/statedb.go # core/state/statedb_test.go # core/state_prefetcher.go # core/state_processor.go # core/state_transition.go # core/tx_pool.go # core/tx_pool_test.go # core/types.go # core/types/block.go # core/vm/evm.go # core/vm/gas_table.go # core/vm/gas_table_test.go # core/vm/instructions_test.go # crypto/ecies/ecies_test.go # dashboard/README.md # dashboard/assets.go # dashboard/assets/.eslintrc # dashboard/assets/.flowconfig # dashboard/assets/common.jsx # dashboard/assets/components/ChartRow.jsx # dashboard/assets/components/CustomTooltip.jsx # dashboard/assets/components/Dashboard.jsx # dashboard/assets/components/Footer.jsx # dashboard/assets/components/Header.jsx # dashboard/assets/components/Logs.jsx # dashboard/assets/components/Main.jsx # dashboard/assets/components/SideBar.jsx # dashboard/assets/fa-only-woff-loader.js # dashboard/assets/index.html # dashboard/assets/index.jsx # dashboard/assets/package.json # dashboard/assets/types/content.jsx # dashboard/assets/yarn.lock # dashboard/dashboard.go # dashboard/log.go # dashboard/message.go # eth/api.go # eth/api_backend.go # eth/api_tracer.go # eth/backend.go # eth/config.go # eth/downloader/downloader.go # eth/filters/filter_test.go # eth/gen_config.go # eth/handler.go # eth/handler_test.go # eth/helper_test.go # eth/peer.go # eth/protocol.go # eth/protocol_test.go # eth/tracers/tracers_test.go # ethclient/ethclient.go # ethclient/ethclient_test.go # ethdb/leveldb/leveldb_test.go # graphql/graphql.go # graphql/graphql_test.go # graphql/schema.go # internal/build/archive.go # internal/build/util.go # internal/ethapi/api.go # internal/ethapi/backend.go # internal/web3ext/web3ext.go # les/api.go # les/api_backend.go # les/api_test.go # les/balance.go # les/client.go # les/clientpool.go # les/clientpool_test.go # les/enr_entry.go # les/protocol.go # les/server.go # les/server_handler.go # les/test_helper.go # light/lightchain.go # metrics/assets/.eslintignore # metrics/assets/components/Network.jsx # metrics/assets/webpack.config.common.js # metrics/assets/webpack.config.dev.js # metrics/assets/webpack.config.prod.js # metrics/cpu.go # metrics/geoip.go # metrics/influxdb/influxdb.go # metrics/metrics.go # metrics/peers.go # metrics/system.go # miner/miner.go # miner/worker.go # miner/worker_test.go # node/config.go # node/service.go # p2p/discover/lookup.go # p2p/enode/node.go # p2p/enode/node_test.go # p2p/enode/urlv4.go # p2p/enode/urlv4_test.go # p2p/enr/entries.go # p2p/metrics.go # p2p/server.go # p2p/server_test.go # p2p/simulations/http_test.go # p2p/simulations/network.go # p2p/simulations/network_test.go # p2p/util.go # params/config.go # params/protocol_params.go # params/version.go # rlp/decode.go # rlp/decode_test.go # rpc/client.go # rpc/client_test.go # rpc/constants_unix.go # rpc/constants_unix_nocgo.go # rpc/doc.go # rpc/handler.go # rpc/http.go # rpc/inproc.go # rpc/ipc.go # rpc/json.go # rpc/server.go # rpc/server_test.go # rpc/service.go # rpc/stdio.go # rpc/subscription.go # rpc/subscription_test.go # rpc/testservice_test.go # rpc/types.go # rpc/websocket.go # rpc/websocket_test.go # signer/core/api.go # signer/core/api_test.go # signer/core/signed_data_test.go # signer/core/types.go # signer/core/uiapi.go # signer/storage/storage.go # swarm/README.md # swarm/fuse/fuse_root.go # swarm/network/simulation/service_test.go # swarm/storage/feed/feed_test.go # swarm/storage/mock/mem/mem_test.go # tests/block_test.go # tests/block_test_util.go # tests/state_test.go # tests/transaction_test.go # tests/transaction_test_util.go # trie/database.go # trie/trie_test.go # vendor/github.com/Azure/azure-pipeline-go/pipeline/core.go # vendor/github.com/Azure/azure-pipeline-go/pipeline/defaultlog_syslog.go # vendor/github.com/Azure/azure-pipeline-go/pipeline/defaultlog_windows.go # vendor/github.com/Azure/azure-pipeline-go/pipeline/error.go # vendor/github.com/Azure/azure-pipeline-go/pipeline/version.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/access_conditions.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/atomicmorph.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/highlevel.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/parsing_urls.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/sas_service.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/service_codes_blob.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/url_append_blob.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/url_blob.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/url_block_blob.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/url_container.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/url_page_blob.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/url_service.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_credential_anonymous.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_credential_shared_key.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_credential_token.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_mmf_unix.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_mmf_windows.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_pipeline.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_policy_request_log.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_policy_retry.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_policy_telemetry.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_policy_unique_request_id.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_sas_account.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_sas_query_params.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_service_codes_common.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_storage_error.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_util_validate.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zc_uuid.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zt_doc.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_generated_append_blob.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_generated_blob.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_generated_block_blob.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_generated_client.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_generated_container.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_generated_models.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_generated_page_blob.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_generated_responder_policy.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_generated_response_error.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_generated_service.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_generated_validation.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_generated_version.go # vendor/github.com/Azure/azure-storage-blob-go/azblob/zz_response_helpers.go # vendor/github.com/gogo/protobuf/GOLANG_CONTRIBUTORS # vendor/github.com/gogo/protobuf/proto/Makefile # vendor/github.com/gogo/protobuf/protoc-gen-gogo/descriptor/Makefile # vendor/github.com/golang/protobuf/LICENSE # vendor/github.com/golang/protobuf/proto/clone.go # vendor/github.com/golang/protobuf/proto/decode.go # vendor/github.com/golang/protobuf/proto/encode.go # vendor/github.com/golang/protobuf/proto/equal.go # vendor/github.com/golang/protobuf/proto/extensions.go # vendor/github.com/golang/protobuf/proto/lib.go # vendor/github.com/golang/protobuf/proto/message_set.go # vendor/github.com/golang/protobuf/proto/pointer_reflect.go # vendor/github.com/golang/protobuf/proto/pointer_unsafe.go # vendor/github.com/golang/protobuf/proto/properties.go # vendor/github.com/golang/protobuf/proto/text.go # vendor/github.com/golang/protobuf/proto/text_parser.go # vendor/github.com/golang/protobuf/protoc-gen-go/descriptor/descriptor.pb.go # vendor/github.com/howeyc/fsnotify/fsnotify_open_bsd.go # vendor/github.com/influxdata/influxdb/LICENSE_OF_DEPENDENCIES.md # vendor/github.com/influxdata/influxdb/client/influxdb.go # vendor/github.com/karalabe/usb/appveyor.yml # vendor/github.com/karalabe/usb/hid_enabled.go # vendor/github.com/karalabe/usb/hidapi/AUTHORS.txt # vendor/github.com/karalabe/usb/hidapi/LICENSE-bsd.txt # vendor/github.com/karalabe/usb/hidapi/LICENSE-gpl3.txt # vendor/github.com/karalabe/usb/hidapi/LICENSE-orig.txt # vendor/github.com/karalabe/usb/hidapi/LICENSE.txt # vendor/github.com/karalabe/usb/hidapi/README.txt # vendor/github.com/karalabe/usb/hidapi/hidapi/hidapi.h # vendor/github.com/karalabe/usb/hidapi/libusb/hid.c # vendor/github.com/karalabe/usb/hidapi/mac/hid.c # vendor/github.com/karalabe/usb/hidapi/windows/hid.c # vendor/github.com/karalabe/usb/libusb/AUTHORS # vendor/github.com/karalabe/usb/libusb/COPYING # vendor/github.com/karalabe/usb/libusb/libusb/config.h # vendor/github.com/karalabe/usb/libusb/libusb/core.c # vendor/github.com/karalabe/usb/libusb/libusb/descriptor.c # vendor/github.com/karalabe/usb/libusb/libusb/hotplug.c # vendor/github.com/karalabe/usb/libusb/libusb/hotplug.h # vendor/github.com/karalabe/usb/libusb/libusb/io.c # vendor/github.com/karalabe/usb/libusb/libusb/libusb.h # vendor/github.com/karalabe/usb/libusb/libusb/libusbi.h # vendor/github.com/karalabe/usb/libusb/libusb/os/darwin_usb.c # vendor/github.com/karalabe/usb/libusb/libusb/os/darwin_usb.h # vendor/github.com/karalabe/usb/libusb/libusb/os/haiku_pollfs.cpp # vendor/github.com/karalabe/usb/libusb/libusb/os/haiku_usb.h # vendor/github.com/karalabe/usb/libusb/libusb/os/haiku_usb_backend.cpp # vendor/github.com/karalabe/usb/libusb/libusb/os/haiku_usb_raw.cpp # vendor/github.com/karalabe/usb/libusb/libusb/os/haiku_usb_raw.h # vendor/github.com/karalabe/usb/libusb/libusb/os/linux_netlink.c # vendor/github.com/karalabe/usb/libusb/libusb/os/linux_udev.c # vendor/github.com/karalabe/usb/libusb/libusb/os/linux_usbfs.c # vendor/github.com/karalabe/usb/libusb/libusb/os/linux_usbfs.h # vendor/github.com/karalabe/usb/libusb/libusb/os/netbsd_usb.c # vendor/github.com/karalabe/usb/libusb/libusb/os/openbsd_usb.c # vendor/github.com/karalabe/usb/libusb/libusb/os/poll_posix.c # vendor/github.com/karalabe/usb/libusb/libusb/os/poll_posix.h # vendor/github.com/karalabe/usb/libusb/libusb/os/poll_windows.h # vendor/github.com/karalabe/usb/libusb/libusb/os/sunos_usb.c # vendor/github.com/karalabe/usb/libusb/libusb/os/sunos_usb.h # vendor/github.com/karalabe/usb/libusb/libusb/os/threads_posix.c # vendor/github.com/karalabe/usb/libusb/libusb/os/threads_windows.h # vendor/github.com/karalabe/usb/libusb/libusb/os/wince_usb.c # vendor/github.com/karalabe/usb/libusb/libusb/os/wince_usb.h # vendor/github.com/karalabe/usb/libusb/libusb/os/windows_common.h # vendor/github.com/karalabe/usb/libusb/libusb/os/windows_nt_common.c # vendor/github.com/karalabe/usb/libusb/libusb/os/windows_usbdk.c # vendor/github.com/karalabe/usb/libusb/libusb/os/windows_usbdk.h # vendor/github.com/karalabe/usb/libusb/libusb/os/windows_winusb.h # vendor/github.com/karalabe/usb/libusb/libusb/strerror.c # vendor/github.com/karalabe/usb/libusb/libusb/sync.c # vendor/github.com/karalabe/usb/libusb/libusb/version.h # vendor/github.com/karalabe/usb/wchar.go # vendor/github.com/mitchellh/go-testing-interface/LICENSE # vendor/github.com/olekukonko/tablewriter/LICENSE.md # vendor/github.com/olekukonko/tablewriter/README.md # vendor/github.com/olekukonko/tablewriter/table.go # vendor/github.com/olekukonko/tablewriter/util.go # vendor/github.com/olekukonko/tablewriter/wrap.go # vendor/github.com/opentracing/opentracing-go/CHANGELOG.md # vendor/github.com/opentracing/opentracing-go/Makefile # vendor/github.com/opentracing/opentracing-go/README.md # vendor/github.com/opentracing/opentracing-go/globaltracer.go # vendor/github.com/opentracing/opentracing-go/propagation.go # vendor/github.com/peterh/liner/fallbackinput.go # vendor/github.com/peterh/liner/input.go # vendor/github.com/peterh/liner/input_windows.go # vendor/github.com/peterh/liner/line.go # vendor/github.com/peterh/liner/output.go # vendor/github.com/peterh/liner/output_windows.go # vendor/github.com/peterh/liner/width.go # vendor/github.com/rs/xhandler/chain.go # vendor/github.com/rs/xhandler/middleware.go # vendor/github.com/rs/xhandler/xhandler.go # vendor/github.com/syndtr/goleveldb/leveldb/batch.go # vendor/github.com/syndtr/goleveldb/leveldb/cache/cache.go # vendor/github.com/syndtr/goleveldb/leveldb/comparer/bytes_comparer.go # vendor/github.com/syndtr/goleveldb/leveldb/comparer/comparer.go # vendor/github.com/syndtr/goleveldb/leveldb/db.go # vendor/github.com/syndtr/goleveldb/leveldb/db_compaction.go # vendor/github.com/syndtr/goleveldb/leveldb/db_iter.go # vendor/github.com/syndtr/goleveldb/leveldb/db_snapshot.go # vendor/github.com/syndtr/goleveldb/leveldb/db_transaction.go # vendor/github.com/syndtr/goleveldb/leveldb/db_util.go # vendor/github.com/syndtr/goleveldb/leveldb/filter/bloom.go # vendor/github.com/syndtr/goleveldb/leveldb/iterator/iter.go # vendor/github.com/syndtr/goleveldb/leveldb/memdb/memdb.go # vendor/github.com/syndtr/goleveldb/leveldb/opt/options.go # vendor/github.com/syndtr/goleveldb/leveldb/session.go # vendor/github.com/syndtr/goleveldb/leveldb/session_compaction.go # vendor/github.com/syndtr/goleveldb/leveldb/session_util.go # vendor/github.com/syndtr/goleveldb/leveldb/table.go # vendor/github.com/syndtr/goleveldb/leveldb/table/reader.go # vendor/github.com/syndtr/goleveldb/leveldb/version.go # vendor/golang.org/x/crypto/ed25519/ed25519.go # vendor/golang.org/x/crypto/ed25519/internal/edwards25519/edwards25519.go # vendor/golang.org/x/crypto/openpgp/keys.go # vendor/golang.org/x/crypto/openpgp/packet/encrypted_key.go # vendor/golang.org/x/crypto/openpgp/packet/packet.go # vendor/golang.org/x/crypto/openpgp/packet/private_key.go # vendor/golang.org/x/crypto/openpgp/packet/public_key.go # vendor/golang.org/x/crypto/openpgp/packet/signature.go # vendor/golang.org/x/crypto/openpgp/packet/userattribute.go # vendor/golang.org/x/crypto/openpgp/write.go # vendor/golang.org/x/crypto/ripemd160/ripemd160.go # vendor/golang.org/x/crypto/ripemd160/ripemd160block.go # vendor/golang.org/x/crypto/scrypt/scrypt.go # vendor/golang.org/x/crypto/sha3/doc.go # vendor/golang.org/x/crypto/sha3/hashes.go # vendor/golang.org/x/crypto/sha3/keccakf.go # vendor/golang.org/x/crypto/sha3/keccakf_amd64.go # vendor/golang.org/x/crypto/sha3/keccakf_amd64.s # vendor/golang.org/x/crypto/sha3/register.go # vendor/golang.org/x/crypto/sha3/sha3.go # vendor/golang.org/x/crypto/sha3/shake.go # vendor/golang.org/x/crypto/sha3/xor.go # vendor/golang.org/x/crypto/sha3/xor_generic.go # vendor/golang.org/x/crypto/sha3/xor_unaligned.go # vendor/golang.org/x/crypto/ssh/certs.go # vendor/golang.org/x/crypto/ssh/channel.go # vendor/golang.org/x/crypto/ssh/cipher.go # vendor/golang.org/x/crypto/ssh/client.go # vendor/golang.org/x/crypto/ssh/client_auth.go # vendor/golang.org/x/crypto/ssh/common.go # vendor/golang.org/x/crypto/ssh/handshake.go # vendor/golang.org/x/crypto/ssh/kex.go # vendor/golang.org/x/crypto/ssh/keys.go # vendor/golang.org/x/crypto/ssh/messages.go # vendor/golang.org/x/crypto/ssh/mux.go # vendor/golang.org/x/crypto/ssh/server.go # vendor/golang.org/x/crypto/ssh/session.go # vendor/golang.org/x/crypto/ssh/streamlocal.go # vendor/golang.org/x/crypto/ssh/tcpip.go # vendor/golang.org/x/crypto/ssh/terminal/terminal.go # vendor/golang.org/x/crypto/ssh/terminal/util.go # vendor/golang.org/x/crypto/ssh/terminal/util_plan9.go # vendor/golang.org/x/crypto/ssh/terminal/util_solaris.go # vendor/golang.org/x/crypto/ssh/terminal/util_windows.go # vendor/golang.org/x/crypto/ssh/transport.go # vendor/golang.org/x/net/context/context.go # vendor/golang.org/x/net/html/atom/table.go # vendor/golang.org/x/net/html/const.go # vendor/golang.org/x/net/html/doc.go # vendor/golang.org/x/net/html/entity.go # vendor/golang.org/x/net/html/foreign.go # vendor/golang.org/x/net/html/node.go # vendor/golang.org/x/net/html/parse.go # vendor/golang.org/x/net/html/token.go # vendor/golang.org/x/net/idna/idna10.0.0.go # vendor/golang.org/x/net/idna/tables10.0.0.go # vendor/golang.org/x/net/websocket/websocket.go # vendor/golang.org/x/sys/cpu/cpu.go # vendor/golang.org/x/sys/cpu/cpu_arm.go # vendor/golang.org/x/sys/cpu/cpu_mips64x.go # vendor/golang.org/x/sys/cpu/cpu_mipsx.go # vendor/golang.org/x/sys/cpu/cpu_other_arm64.go # vendor/golang.org/x/sys/cpu/cpu_ppc64x.go # vendor/golang.org/x/sys/cpu/cpu_s390x.go # vendor/golang.org/x/sys/cpu/cpu_x86.go # vendor/golang.org/x/sys/unix/README.md # vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s # vendor/golang.org/x/sys/unix/asm_linux_386.s # vendor/golang.org/x/sys/unix/asm_linux_amd64.s # vendor/golang.org/x/sys/unix/asm_linux_arm.s # vendor/golang.org/x/sys/unix/asm_linux_arm64.s # vendor/golang.org/x/sys/unix/asm_linux_mips64x.s # vendor/golang.org/x/sys/unix/asm_linux_mipsx.s # vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s # vendor/golang.org/x/sys/unix/asm_linux_s390x.s # vendor/golang.org/x/sys/unix/cap_freebsd.go # vendor/golang.org/x/sys/unix/constants.go # vendor/golang.org/x/sys/unix/dirent.go # vendor/golang.org/x/sys/unix/env_unix.go # vendor/golang.org/x/sys/unix/fcntl.go # vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go # vendor/golang.org/x/sys/unix/gccgo.go # vendor/golang.org/x/sys/unix/gccgo_c.c # vendor/golang.org/x/sys/unix/mkall.sh # vendor/golang.org/x/sys/unix/mkerrors.sh # vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl # vendor/golang.org/x/sys/unix/openbsd_pledge.go # vendor/golang.org/x/sys/unix/pagesize_unix.go # vendor/golang.org/x/sys/unix/race0.go # vendor/golang.org/x/sys/unix/sockcmsg_unix.go # vendor/golang.org/x/sys/unix/str.go # vendor/golang.org/x/sys/unix/syscall.go # vendor/golang.org/x/sys/unix/syscall_bsd.go # vendor/golang.org/x/sys/unix/syscall_darwin.go # vendor/golang.org/x/sys/unix/syscall_darwin_386.go # vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go # vendor/golang.org/x/sys/unix/syscall_darwin_arm.go # vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go # vendor/golang.org/x/sys/unix/syscall_dragonfly.go # vendor/golang.org/x/sys/unix/syscall_freebsd.go # vendor/golang.org/x/sys/unix/syscall_linux.go # vendor/golang.org/x/sys/unix/syscall_linux_386.go # vendor/golang.org/x/sys/unix/syscall_linux_amd64.go # vendor/golang.org/x/sys/unix/syscall_linux_arm.go # vendor/golang.org/x/sys/unix/syscall_linux_arm64.go # vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go # vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go # vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go # vendor/golang.org/x/sys/unix/syscall_linux_s390x.go # vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go # vendor/golang.org/x/sys/unix/syscall_netbsd.go # vendor/golang.org/x/sys/unix/syscall_openbsd.go # vendor/golang.org/x/sys/unix/syscall_openbsd_386.go # vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go # vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go # vendor/golang.org/x/sys/unix/syscall_solaris.go # vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go # vendor/golang.org/x/sys/unix/syscall_unix.go # vendor/golang.org/x/sys/unix/syscall_unix_gc.go # vendor/golang.org/x/sys/unix/timestruct.go # vendor/golang.org/x/sys/unix/zerrors_darwin_386.go # vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go # vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go # vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go # vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go # vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go # vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go # vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go # vendor/golang.org/x/sys/unix/zerrors_linux_386.go # vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go # vendor/golang.org/x/sys/unix/zerrors_linux_arm.go # vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go # vendor/golang.org/x/sys/unix/zerrors_linux_mips.go # vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go # vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go # vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go # vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go # vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go # vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go # vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go # vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go # vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go # vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go # vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go # vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go # vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go # vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go # vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go # vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go # vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go # vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go # vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go # vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go # vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go # vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go # vendor/golang.org/x/sys/unix/zsyscall_linux_386.go # vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go # vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go # vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go # vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go # vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go # vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go # vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go # vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go # vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go # vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go # vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go # vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go # vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go # vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go # vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go # vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go # vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go # vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go # vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go # vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go # vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go # vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go # vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go # vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go # vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go # vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go # vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go # vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go # vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go # vendor/golang.org/x/sys/unix/zsysnum_linux_386.go # vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go # vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go # vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go # vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go # vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go # vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go # vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go # vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go # vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go # vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go # vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go # vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go # vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go # vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go # vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go # vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go # vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go # vendor/golang.org/x/sys/unix/ztypes_darwin_386.go # vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go # vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go # vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go # vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go # vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go # vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go # vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go # vendor/golang.org/x/sys/unix/ztypes_linux_386.go # vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go # vendor/golang.org/x/sys/unix/ztypes_linux_arm.go # vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go # vendor/golang.org/x/sys/unix/ztypes_linux_mips.go # vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go # vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go # vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go # vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go # vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go # vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go # vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go # vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go # vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go # vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go # vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go # vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go # vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go # vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go # vendor/golang.org/x/sys/windows/asm_windows_386.s # vendor/golang.org/x/sys/windows/asm_windows_amd64.s # vendor/golang.org/x/sys/windows/env_windows.go # vendor/golang.org/x/sys/windows/security_windows.go # vendor/golang.org/x/sys/windows/service.go # vendor/golang.org/x/sys/windows/syscall.go # vendor/golang.org/x/sys/windows/syscall_windows.go # vendor/golang.org/x/sys/windows/types_windows.go # vendor/golang.org/x/sys/windows/zsyscall_windows.go # vendor/golang.org/x/text/encoding/charmap/charmap.go # vendor/golang.org/x/text/encoding/charmap/tables.go # vendor/golang.org/x/text/encoding/encoding.go # vendor/golang.org/x/text/encoding/htmlindex/htmlindex.go # vendor/golang.org/x/text/encoding/htmlindex/tables.go # vendor/golang.org/x/text/encoding/internal/identifier/identifier.go # vendor/golang.org/x/text/encoding/internal/identifier/mib.go # vendor/golang.org/x/text/encoding/japanese/eucjp.go # vendor/golang.org/x/text/encoding/japanese/iso2022jp.go # vendor/golang.org/x/text/encoding/japanese/shiftjis.go # vendor/golang.org/x/text/encoding/korean/euckr.go # vendor/golang.org/x/text/encoding/simplifiedchinese/gbk.go # vendor/golang.org/x/text/encoding/simplifiedchinese/hzgb2312.go # vendor/golang.org/x/text/encoding/traditionalchinese/big5.go # vendor/golang.org/x/text/encoding/unicode/unicode.go # vendor/golang.org/x/text/internal/language/lookup.go # vendor/golang.org/x/text/language/coverage.go # vendor/golang.org/x/text/language/language.go # vendor/golang.org/x/text/language/match.go # vendor/golang.org/x/text/language/parse.go # vendor/golang.org/x/text/language/tables.go # vendor/golang.org/x/text/language/tags.go # vendor/golang.org/x/text/transform/transform.go # vendor/golang.org/x/text/unicode/bidi/bidi.go # vendor/golang.org/x/text/unicode/bidi/bracket.go # vendor/golang.org/x/text/unicode/bidi/core.go # vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go # vendor/golang.org/x/text/unicode/norm/composition.go # vendor/golang.org/x/text/unicode/norm/forminfo.go # vendor/golang.org/x/text/unicode/norm/iter.go # vendor/golang.org/x/text/unicode/norm/normalize.go # vendor/golang.org/x/text/unicode/norm/readwriter.go # vendor/golang.org/x/text/unicode/norm/tables10.0.0.go # vendor/golang.org/x/text/unicode/norm/tables9.0.0.go # vendor/golang.org/x/text/unicode/norm/transform.go # vendor/golang.org/x/time/LICENSE # vendor/golang.org/x/time/PATENTS # vendor/gopkg.in/olebedev/go-duktape.v3/api.go # vendor/gopkg.in/olebedev/go-duktape.v3/conts.go # vendor/gopkg.in/olebedev/go-duktape.v3/duk_alloc_pool.h # vendor/gopkg.in/olebedev/go-duktape.v3/duk_config.h # vendor/gopkg.in/olebedev/go-duktape.v3/duk_console.c # vendor/gopkg.in/olebedev/go-duktape.v3/duk_console.h # vendor/gopkg.in/olebedev/go-duktape.v3/duk_logging.h # vendor/gopkg.in/olebedev/go-duktape.v3/duk_minimal_printf.h # vendor/gopkg.in/olebedev/go-duktape.v3/duk_module_duktape.c # vendor/gopkg.in/olebedev/go-duktape.v3/duk_module_duktape.h # vendor/gopkg.in/olebedev/go-duktape.v3/duk_module_node.h # vendor/gopkg.in/olebedev/go-duktape.v3/duk_print_alert.h # vendor/gopkg.in/olebedev/go-duktape.v3/duk_v1_compat.h # vendor/gopkg.in/olebedev/go-duktape.v3/duktape.c # vendor/gopkg.in/olebedev/go-duktape.v3/duktape.go # vendor/gopkg.in/olebedev/go-duktape.v3/duktape.h # vendor/vendor.json
amalraj.manigmail.com committedMay 15, 2020 Configuration menu - View commit details
-
Copy full SHA for 7c33c6c - Browse repository at this point
Copy the full SHA 7c33c6cView commit details
Commits on May 19, 2020
-
amalraj.manigmail.com committed
May 19, 2020 Configuration menu - View commit details
-
Copy full SHA for f3fff68 - Browse repository at this point
Copy the full SHA f3fff68View commit details
Commits on May 20, 2020
-
amalraj.manigmail.com committed
May 20, 2020 Configuration menu - View commit details
-
Copy full SHA for 6ae565f - Browse repository at this point
Copy the full SHA 6ae565fView commit details -
amalraj.manigmail.com committed
May 20, 2020 Configuration menu - View commit details
-
Copy full SHA for d341c66 - Browse repository at this point
Copy the full SHA d341c66View commit details -
node: retain quorum specific changes
amalraj.manigmail.com committedMay 20, 2020 Configuration menu - View commit details
-
Copy full SHA for d539997 - Browse repository at this point
Copy the full SHA d539997View commit details
Commits on Aug 6, 2020
-
Merge remote-tracking branch 'remotes/origin/master' into quorum-geth…
…-1.9.8-upgrade # Conflicts: # cmd/geth/config.go # cmd/geth/main.go # core/state/state_test.go # rpc/http.go # rpc/json.go # rpc/websocket.go # vendor/github.com/gogo/protobuf/go.mod # vendor/github.com/hashicorp/go-plugin/go.mod # vendor/github.com/peterh/liner/go.mod # vendor/google.golang.org/grpc/go.mod # vendor/vendor.json
amalraj mani committedAug 6, 2020 Configuration menu - View commit details
-
Copy full SHA for 8146a76 - Browse repository at this point
Copy the full SHA 8146a76View commit details
Commits on Aug 7, 2020
-
resolve secp256k1 go.mod dependency
update geth/config.go based on upstream change
amalraj mani committedAug 7, 2020 Configuration menu - View commit details
-
Copy full SHA for 1c2e0ea - Browse repository at this point
Copy the full SHA 1c2e0eaView commit details
Commits on Aug 11, 2020
-
amalraj mani committed
Aug 11, 2020 Configuration menu - View commit details
-
Copy full SHA for 2049831 - Browse repository at this point
Copy the full SHA 2049831View commit details
Commits on Aug 13, 2020
-
amalraj mani committed
Aug 13, 2020 Configuration menu - View commit details
-
Copy full SHA for bc78efc - Browse repository at this point
Copy the full SHA bc78efcView commit details -
amalraj mani committed
Aug 13, 2020 Configuration menu - View commit details
-
Copy full SHA for 4b3cc58 - Browse repository at this point
Copy the full SHA 4b3cc58View commit details -
amalraj mani committed
Aug 13, 2020 Configuration menu - View commit details
-
Copy full SHA for c0a9280 - Browse repository at this point
Copy the full SHA c0a9280View commit details
Commits on Jan 8, 2021
-
Configuration menu - View commit details
-
Copy full SHA for e8d15cd - Browse repository at this point
Copy the full SHA e8d15cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8b5bd9c - Browse repository at this point
Copy the full SHA 8b5bd9cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3b09fc8 - Browse repository at this point
Copy the full SHA 3b09fc8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f14de7 - Browse repository at this point
Copy the full SHA 2f14de7View commit details -
- Replacing with underscore unused variables. - Removing unnucessary casts
Configuration menu - View commit details
-
Copy full SHA for 8f2c98b - Browse repository at this point
Copy the full SHA 8f2c98bView commit details
Commits on Jan 11, 2021
-
Configuration menu - View commit details
-
Copy full SHA for fd63ccd - Browse repository at this point
Copy the full SHA fd63ccdView commit details -
Fixed spacing, import ordering and other small issues
Configuration menu - View commit details
-
Copy full SHA for 0f8d228 - Browse repository at this point
Copy the full SHA 0f8d228View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5310443 - Browse repository at this point
Copy the full SHA 5310443View commit details
Commits on Jan 13, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 94a44b9 - Browse repository at this point
Copy the full SHA 94a44b9View commit details -
Configuration menu - View commit details
-
Copy full SHA for de15ddc - Browse repository at this point
Copy the full SHA de15ddcView commit details -
Configuration menu - View commit details
-
Copy full SHA for b131389 - Browse repository at this point
Copy the full SHA b131389View commit details
Commits on Jan 14, 2021
-
fix: duplicated line that touches the smart contract on the EVM state
refactor: improved ID test
Configuration menu - View commit details
-
Copy full SHA for b0ab094 - Browse repository at this point
Copy the full SHA b0ab094View commit details
Commits on Jan 27, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 0351502 - Browse repository at this point
Copy the full SHA 0351502View commit details -
Configuration menu - View commit details
-
Copy full SHA for 11aa268 - Browse repository at this point
Copy the full SHA 11aa268View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7017f55 - Browse repository at this point
Copy the full SHA 7017f55View commit details
Commits on Feb 1, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 5a218f2 - Browse repository at this point
Copy the full SHA 5a218f2View commit details
Commits on Feb 2, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 63b65fb - Browse repository at this point
Copy the full SHA 63b65fbView commit details