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.
This commit is contained in:
gary rong 2019-10-29 02:50:11 +09:00 committed by Igor Mandrigin
parent 206ba4ea54
commit dec8b5cf64

114
diff.txt
View File

@ -1086,117 +1086,3 @@ Date: Tue Oct 29 02:50:11 2019 +0900
(1) they are all ready nodes (no more dependency)
(2) underlying database provides write atomicity
commit 9c81387befa18a686b262482cd1dd27b75fe8422
Author: Michael Forney <mforney@mforney.org>
Date: Mon Oct 28 06:55:20 2019 -0700
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.
commit 72617a0742391e80701123cd19429edd0e94fd10
Author: Guillaume Ballet <gballet@gmail.com>
Date: Mon Oct 28 16:57:34 2019 +0900
consensus: fix possessives in comments. (#20209)
commit db79143a13c9f912706b76a8c3a9e6966c39003a
Author: Martin Holst Swende <martin@swende.se>
Date: Thu Oct 24 10:45:07 2019 +0200
clef: resolve windows pipes, fixes #20121 (#20166)
commit 538f763fdc304329d6231e6cb31efab4cba5153e
Author: Piotr Dyraga <piotr.dyraga@keep.network>
Date: Mon Oct 21 10:13:41 2019 +0200
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.
commit d4bb3798d8aa33a21b5422b800ccdef01c7e1574
Author: gary rong <garyrong0905@gmail.com>
Date: Sun Oct 20 19:36:40 2019 +0900
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.
commit 08953e42c1b7120dda8ebd6763e73a3aa5a27b4c
Author: Marius Kjærstad <sandakersmann@users.noreply.github.com>
Date: Sun Oct 20 12:25:25 2019 +0200
metrics: change links in README.md to https (#20182)
commit b9299bbc46567608b4e6dcc4e8b8758dd3289231
Author: Marius Kjærstad <sandakersmann@users.noreply.github.com>
Date: Fri Oct 18 21:30:53 2019 +0200
dashboard: change links in README to https (#20181)
Changed http:// to https:// on links in dashboard/README.md
commit 9a770659486a51600d4781f6f67dd2f695c55644
Author: Marius Kjærstad <sandakersmann@users.noreply.github.com>
Date: Fri Oct 18 08:51:54 2019 +0200
Changed http:// to https:// on links in log/README.md (#20178)
docs: change http to https on links in log/README.md
commit a28093ced4e81bcae10ccceba68f0c64da14383c
Author: Jeffery Robert Walsh <rlxrlps@gmail.com>
Date: Thu Oct 17 01:39:14 2019 -0700
README: use new miner threads flag instead of legacy minerthreads flag (#20165)
commit d5b79e752e80c097191630ada2b07b32b48de77b
Author: Ross <9055337+Chadsr@users.noreply.github.com>
Date: Thu Oct 17 10:07:09 2019 +0200
p2p/simulations: add node properties support and utility functions (#20060)
commit 73003659561d83eb3123e008157134eaab6e4b03
Author: Felix Lange <fjl@twurst.com>
Date: Wed Oct 16 13:35:24 2019 +0200
p2p/dnsdisc: update to latest EIP-1459 spec (#20168)
This updates the DNS TXT record format to the latest
changes in ethereum/EIPs#2313.
commit c476460cb2ea573a3266da5d5ec121170bb48e56
Author: Martin Holst Swende <martin@swende.se>
Date: Wed Oct 16 13:23:14 2019 +0200
params: check fork ordering when initializing new genesis, fixes #20136 (#20169)
prevent users from misconfiguring their nodes so that fork ordering is not preserved.
commit 028af3457d9491433c90eca8383be87e2becb574
Author: gary rong <garyrong0905@gmail.com>
Date: Tue Oct 15 17:19:20 2019 +0900
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.
commit a73f3f45183a347864a1c941930d6f26c6f06ac2
Author: Felix Lange <fjl@twurst.com>
Date: Thu Oct 3 11:29:55 2019 +0200
params: begin v1.9.7 release cycle