Skip to content
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

Feat/evmc6 #57

Merged
merged 182 commits into from
Jul 21, 2020
Merged

Feat/evmc6 #57

merged 182 commits into from
Jul 21, 2020

Commits on Nov 8, 2019

  1. vendor: Add EVMC 6.0.2

    govendor fetch github.com/ethereum/evmc/bindings/go/evmc@=v6.0.2
    chfast committed Nov 8, 2019
    Configuration menu
    Copy the full SHA
    5af0927 View commit details
    Browse the repository at this point in the history
  2. core/vm: Add EVMC support

    chfast committed Nov 8, 2019
    Configuration menu
    Copy the full SHA
    b517d31 View commit details
    Browse the repository at this point in the history
  3. Upgrade EVMC to 6.1.1

    chfast committed Nov 8, 2019
    Configuration menu
    Copy the full SHA
    e862a67 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6d7511f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3f4678b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9976611 View commit details
    Browse the repository at this point in the history
  7. evmc: Refactor code

    chfast committed Nov 8, 2019
    Configuration menu
    Copy the full SHA
    cff2b3f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5091fd4 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    a8b6f87 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    46352a4 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    567d3aa View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    37eb880 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    4bea7d1 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    afc097f View commit details
    Browse the repository at this point in the history
  15. vendor: Upgrade EVMC to 6.3.0

    chfast committed Nov 8, 2019
    Configuration menu
    Copy the full SHA
    da04eb3 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    e09ecc6 View commit details
    Browse the repository at this point in the history
  17. evmc: Add Istanbul support

    chfast committed Nov 8, 2019
    Configuration menu
    Copy the full SHA
    1ca8b76 View commit details
    Browse the repository at this point in the history
  18. evmc: Update for v7 EVMC API

    chfast committed Nov 8, 2019
    Configuration menu
    Copy the full SHA
    3dfb3bf View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    b36c49e View commit details
    Browse the repository at this point in the history
  20. evmc: Add Istanbul support

    chfast committed Nov 8, 2019
    Configuration menu
    Copy the full SHA
    769e062 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2020

  1. Configuration menu
    Copy the full SHA
    4bdec40 View commit details
    Browse the repository at this point in the history
  2. Init merge ewasm evmc6 support

    Submods, gomods, oh my!
    (Mostly vendor/dep management)
    
    I used a submodule with go mod's replace
    directive because I want to first
    establish an MVP implementation of the
    existing PR as-is.
    
    Issues found during testing, design and
    architectural questions are unstable and still
    open for discussion.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    8825915 View commit details
    Browse the repository at this point in the history
  3. core/vm: implement EIP2200 in our style

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    7b359ff View commit details
    Browse the repository at this point in the history
  4. implement EIP158/161 in our style

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    62a2904 View commit details
    Browse the repository at this point in the history
  5. core/vm: fix params/var import path

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    414ca2c View commit details
    Browse the repository at this point in the history
  6. core/vm: fix ChainID

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    7c11f44 View commit details
    Browse the repository at this point in the history
  7. core/vm: fix IsHomestead/GetEthashEIP2Transition

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    0f05562 View commit details
    Browse the repository at this point in the history
  8. core/vm: adjust Fork/Fork-feature logic for evmc.Revision

    As noted in the comment, this may not be the right
    gitm commit -S -s -m core/vm:
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    1641f68 View commit details
    Browse the repository at this point in the history
  9. tests: remove unused import

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    64553bc View commit details
    Browse the repository at this point in the history
  10. core/vm,tests: pass: 'go test ./tests/...'

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    6a81e07 View commit details
    Browse the repository at this point in the history
  11. run go mod tidy

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    083d08a View commit details
    Browse the repository at this point in the history
  12. evmc: update to latest

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    5aa2c5f View commit details
    Browse the repository at this point in the history
  13. accounts: NOTES about trying to abi missing header file error

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    dc9afe5 View commit details
    Browse the repository at this point in the history
  14. evmc: update submodule

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    8f9e15f View commit details
    Browse the repository at this point in the history
  15. run go mod tidy

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    497478f View commit details
    Browse the repository at this point in the history
  16. evmc: update submodule

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    b339d93 View commit details
    Browse the repository at this point in the history
  17. accounts/scwallet: fix 'not enough arguments' error

    I have no idea where this came from.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    d634a02 View commit details
    Browse the repository at this point in the history
  18. run make all

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    74ec823 View commit details
    Browse the repository at this point in the history
  19. go.mod: run go mod tidy, update tag for evmc

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    451fe76 View commit details
    Browse the repository at this point in the history
  20. go.mod: use v0.0.0 for github.com/ethereum/evmc

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    4db63db View commit details
    Browse the repository at this point in the history
  21. go.mod: use github.com/ethereum/evmc@v6.3.1

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    a6dd735 View commit details
    Browse the repository at this point in the history
  22. accounts/abi/bind: remove dead comments

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    da79e76 View commit details
    Browse the repository at this point in the history
  23. tests: rename flags to use full evmc parent name

    I think this is more descriptive.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    4af8093 View commit details
    Browse the repository at this point in the history
  24. evmc: v7.1.0

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    4e976bd View commit details
    Browse the repository at this point in the history
  25. go.mod: use evmc as a submodule, not an external dependency

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    a162c17 View commit details
    Browse the repository at this point in the history
  26. evmc: v6.3.1

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    b386024 View commit details
    Browse the repository at this point in the history
  27. Revert "evmc: v6.3.1"

    This reverts commit b386024.
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    136deb4 View commit details
    Browse the repository at this point in the history
  28. evmc: v6.3.1

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    814e8a4 View commit details
    Browse the repository at this point in the history
  29. core/vm: evmc API to v6.3.1 compatible

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    7eec2d4 View commit details
    Browse the repository at this point in the history
  30. core/vm: v6: remote emvc.TxContext#ChainID

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    e5ba87b View commit details
    Browse the repository at this point in the history
  31. evmc: update

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    cf9bc06 View commit details
    Browse the repository at this point in the history
  32. Makefile: add generate command (for evmc)

    evmc needs a .so file generated in order to pass its tests.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    d073ca8 View commit details
    Browse the repository at this point in the history
  33. tests: add log line printing evmc flag value

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    6253d24 View commit details
    Browse the repository at this point in the history
  34. .golangci.yml,core/vm/tests: (lint) fix issues, ignore evmc linting

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    37be839 View commit details
    Browse the repository at this point in the history
  35. evmc: v6.3.1

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 5, 2020
    Configuration menu
    Copy the full SHA
    a26876b View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2020

  1. Makefile: remove dupe test run

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 6, 2020
    Configuration menu
    Copy the full SHA
    059e79c View commit details
    Browse the repository at this point in the history
  2. Makefile: rename command generate -> evmc

    This is more in the spirit of Makefiles and
    reduces generality of command intention
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 6, 2020
    Configuration menu
    Copy the full SHA
    2413dd9 View commit details
    Browse the repository at this point in the history
  3. .travis.yml: add 'make evmc' step to test step

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 6, 2020
    Configuration menu
    Copy the full SHA
    7e7f8d1 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2020

  1. tests: tests/testdata at 'multigeth/ewasm' version

    - Includes EWASM state tests in development branch of submodule.
    - Includes State Test runner adaptations to run EWASM tests.
    
    DEVELOPMENT ONLY. These are not necessarily good-code patterns,
    and should be considered a design WIP.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 8, 2020
    Configuration menu
    Copy the full SHA
    d242718 View commit details
    Browse the repository at this point in the history
  2. tests: rename getVMConfig to getForkChainConfig, more accurate

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 8, 2020
    Configuration menu
    Copy the full SHA
    7a3ca4f View commit details
    Browse the repository at this point in the history
  3. core/vm: use better indicative EIPs as references for evmc.Revision s…

    …witch
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 8, 2020
    Configuration menu
    Copy the full SHA
    fdde1a0 View commit details
    Browse the repository at this point in the history
  4. tests: PASS hera: allow EVMC to return internalError

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 8, 2020
    Configuration menu
    Copy the full SHA
    139dbb5 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2020

  1. tests: skip EWASM test callSenderBalanceExceeds128Bits

    This test would cause hera evmc.Run to panic.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 9, 2020
    Configuration menu
    Copy the full SHA
    8bfeb96 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2020

  1. tests: hera skip stEWASMTests/ecAddCallDataCopy

    These two tests seem to be the only tests hera is failing.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 10, 2020
    Configuration menu
    Copy the full SHA
    c93eb46 View commit details
    Browse the repository at this point in the history
  2. core/vm: use contract Value fn instead of field

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 10, 2020
    Configuration menu
    Copy the full SHA
    a4bd333 View commit details
    Browse the repository at this point in the history
  3. cmd/evm: add --evmc.ewasm flag to 'evm statetest' command

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 10, 2020
    Configuration menu
    Copy the full SHA
    88f5c66 View commit details
    Browse the repository at this point in the history
  4. cmd/evm: statetest command supports walk dir or single file

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 10, 2020
    Configuration menu
    Copy the full SHA
    e56cad0 View commit details
    Browse the repository at this point in the history
  5. cmd/evm: statetest result should default to fail

    Modifies initial StatetestResult field Pass=false,
    since we should assume tests fail unless proven otherwise.
    
    Also adds if any test fails, then the program should return
    the err, hopefully causing program to exit 1?
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 10, 2020
    Configuration menu
    Copy the full SHA
    3abcf39 View commit details
    Browse the repository at this point in the history
  6. tests: comment Hera skipLoad tests, they don't seem broken anymore

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 10, 2020
    Configuration menu
    Copy the full SHA
    fc424d7 View commit details
    Browse the repository at this point in the history
  7. Makefile: use evmc command as PHONY to force example_vm.so file for t…

    …ests
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 10, 2020
    Configuration menu
    Copy the full SHA
    9dd4dab View commit details
    Browse the repository at this point in the history
  8. cmd/evm: (lint) goimports

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 10, 2020
    Configuration menu
    Copy the full SHA
    3cd62be View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2020

  1. tests: fix stEWASM skipLoad typo

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    05c12eb View commit details
    Browse the repository at this point in the history
  2. tests: comment ssvm skipLoad values because unknown

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    1c7c421 View commit details
    Browse the repository at this point in the history
  3. Makefile,build: setup emvc.hera state test

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    1c98f3e View commit details
    Browse the repository at this point in the history
  4. build: hera script 'set -e' and fix mkdir

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    26d5b5d View commit details
    Browse the repository at this point in the history
  5. build,Makefile: ssvm.sh and make ssvm command

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    febe386 View commit details
    Browse the repository at this point in the history
  6. .travis.yml: apt-get dependencies for SSVM build

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    3291fd0 View commit details
    Browse the repository at this point in the history
  7. Makefile: include apt-get installs before evmc generation?

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    82580d7 View commit details
    Browse the repository at this point in the history
  8. Makefile: test multigeth stuff first

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    72524aa View commit details
    Browse the repository at this point in the history
  9. Makefile: remove 'make evmc' step from tests

    This may cause go test ./evmc to fail, but
    Travis C++ compiler doesn't love this.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    493d5f9 View commit details
    Browse the repository at this point in the history
  10. tests: add Difficulty test config for EIP2384

    These tests are included in the advanced tests submodule.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    b3265ad View commit details
    Browse the repository at this point in the history
  11. Makefile: run test-evmc first on test-multigeth

    It fails the fastest.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    94ad236 View commit details
    Browse the repository at this point in the history
  12. .travis.yml,Makefile: move test-evmc to own travis matrix

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 11, 2020
    Configuration menu
    Copy the full SHA
    2e45ef9 View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2020

  1. Merge branch 'master' into feat/evmc6

    Conflicts:
    	tests/difficulty_test_util.go
    
    ---
    Conflicts: DISCUSSION
    	tests/difficulty_test_util.go istanbul activation mismatch
    Istanbul does not change difficulty, so activation can be removed
    meowsbits committed Mar 13, 2020
    Configuration menu
    Copy the full SHA
    da1654e View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2020

  1. build,tests: update SSVM dependency to latest

    Updates SSVM dev to latest as mentioned in
    #62 (comment)
    
    SSVM still failing 8 state test cases, but not causing seg fault
    anymore.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Mar 16, 2020
    Configuration menu
    Copy the full SHA
    ac941c7 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2020

  1. Merge branch 'master' into feat/evmc6

     Conflicts:
    	go.mod
    	go.sum
    meowsbits committed Apr 15, 2020
    Configuration menu
    Copy the full SHA
    ee95d1a View commit details
    Browse the repository at this point in the history
  2. build/ssvm.sh: bump SSVM to 0.5.0

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Apr 15, 2020
    Configuration menu
    Copy the full SHA
    8354c39 View commit details
    Browse the repository at this point in the history
  3. tests: make EWASM tests in parallel, remove dead comments

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Apr 15, 2020
    Configuration menu
    Copy the full SHA
    0b4c0dd View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2020

  1. Configuration menu
    Copy the full SHA
    7a8bb8a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5a1fca1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7e84fb1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cd7afd6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    298c8e1 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2020

  1. .travis.ci: add missing step

    tzdybal committed May 4, 2020
    Configuration menu
    Copy the full SHA
    a9f19c7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a25c0cc View commit details
    Browse the repository at this point in the history
  3. .travis.ci: another try with

    tzdybal committed May 4, 2020
    Configuration menu
    Copy the full SHA
    205c8b3 View commit details
    Browse the repository at this point in the history
  4. .travis.yml: remove trailing slash in language decl

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    f43a997 View commit details
    Browse the repository at this point in the history
  5. vm: remove dead code re: EIP2200

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    fa741d4 View commit details
    Browse the repository at this point in the history
  6. tests: run all StateTests when --evmc.ewasm configured

    Only skipping EWASM tests when that flag is not set.
    Parallelism set for all cases (unmodified from original
    behavior).
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    5525060 View commit details
    Browse the repository at this point in the history
  7. tests: remove dead code from debugging

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    b3b0df5 View commit details
    Browse the repository at this point in the history
  8. .travis.yml: remove trailing slash in go generate step

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    f5b5653 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    41984da View commit details
    Browse the repository at this point in the history
  10. .travis.yml: unexperiemts, remove the 'go generate' evmc step alltoge…

    …ther
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    8623ef2 View commit details
    Browse the repository at this point in the history
  11. Makefile: turn off -v in evmc makefile test cmd

    The logs are so verbose I cant read what
    fails on Travis.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    00ec5c8 View commit details
    Browse the repository at this point in the history
  12. .travis.yml: use defaulty cc, gcc instead of versioned

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    2121b15 View commit details
    Browse the repository at this point in the history
  13. .travis.yml: maybe fix echo fail b/c command formatting

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    9602dee View commit details
    Browse the repository at this point in the history
  14. .travis.yml: reorder apt-get to happen first

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    5822a9d View commit details
    Browse the repository at this point in the history
  15. .travis.yml: remove echos b/c they fails, idk why

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    0eb459f View commit details
    Browse the repository at this point in the history
  16. .travis.yml: use cc=gcc cxx=g++

    This is what is used at ethereum/evmc
    
    See
    https://app.circleci.com/pipelines/github/meowsbits/evmc/3/workflows/f98e7540-2831-4283-b0d7-4c57249a8347/jobs/41
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    dfb03ab View commit details
    Browse the repository at this point in the history
  17. .travis.yml: remove -9 version apt-get gccs; they fail

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    37fdf77 View commit details
    Browse the repository at this point in the history
  18. .travis.yml: update cc, cxx envs for arm job

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    b48dc7a View commit details
    Browse the repository at this point in the history
  19. .travis.yml: use gcc to compile shared object instead of go generate

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    c2a4f75 View commit details
    Browse the repository at this point in the history
  20. use explicit gcc9 for test-evmc step

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    f8ca1d8 View commit details
    Browse the repository at this point in the history
  21. .travis.yml: remove g++ apt-get target, unnecessary b/c addon

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    35efdba View commit details
    Browse the repository at this point in the history
  22. remove special g++9?

    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    43ac519 View commit details
    Browse the repository at this point in the history
  23. download hera instead of building

    Building is erroring Travis and I dont want to mess with it.
    https://travis-ci.org/github/meowsbits/core-geth/jobs/683121554
    meowsbits committed May 4, 2020
    Configuration menu
    Copy the full SHA
    a87adc0 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2020

  1. .github/workflows/evmc.yml,.travis.yml,build/hera.sh: use Github Acti…

    …ons for EVMC SO tests intead of travis
    
    Travis is a pain in the ass.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 5, 2020
    Configuration menu
    Copy the full SHA
    c67892a View commit details
    Browse the repository at this point in the history
  2. .travis.yml: set cc,cxx env explicity for arm build

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 5, 2020
    Configuration menu
    Copy the full SHA
    255fa5e View commit details
    Browse the repository at this point in the history
  3. .travis.yml: remove gcc settings from lint job

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 5, 2020
    Configuration menu
    Copy the full SHA
    f6530f7 View commit details
    Browse the repository at this point in the history
  4. .travis.yml: p: ARM unrecognized option -marm, s: comment gcc9

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 5, 2020
    Configuration menu
    Copy the full SHA
    2c59367 View commit details
    Browse the repository at this point in the history
  5. .travis.yml: try go get ./... to fix linting

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 5, 2020
    Configuration menu
    Copy the full SHA
    6954382 View commit details
    Browse the repository at this point in the history
  6. .travis.yml: make sure we can install before linting

    golangci/golangci-lint#825
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 5, 2020
    Configuration menu
    Copy the full SHA
    1e1fa8d View commit details
    Browse the repository at this point in the history
  7. .github/workflows/evmc.yml: rename github action evmc job for clarity

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 5, 2020
    Configuration menu
    Copy the full SHA
    275d1b9 View commit details
    Browse the repository at this point in the history
  8. .github/workflows/evmc.yml,.travis.yml: git submodule evmc for linter

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 5, 2020
    Configuration menu
    Copy the full SHA
    debc83d View commit details
    Browse the repository at this point in the history
  9. .travis.yml: remove dead comments

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 5, 2020
    Configuration menu
    Copy the full SHA
    ef70895 View commit details
    Browse the repository at this point in the history
  10. build/ssvm.sh: comment SSVM download vs. install script

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 5, 2020
    Configuration menu
    Copy the full SHA
    deadf44 View commit details
    Browse the repository at this point in the history
  11. vm: comment vmConfig EWASM switch

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 5, 2020
    Configuration menu
    Copy the full SHA
    470e324 View commit details
    Browse the repository at this point in the history
  12. docs/core/evmc.md: init EVMC documentation

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 5, 2020
    Configuration menu
    Copy the full SHA
    b5fc873 View commit details
    Browse the repository at this point in the history
  13. vm,docs/core/evmc.md: extend evmc documentation

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 5, 2020
    Configuration menu
    Copy the full SHA
    c24ee92 View commit details
    Browse the repository at this point in the history
  14. tests: remove dead comment

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed May 5, 2020
    Configuration menu
    Copy the full SHA
    73ec673 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2020

  1. Merge branch 'master' into feat/evmc6

    Conflicts:
          .travis.yml
          Makefile
          cmd/evm/staterunner.go
          go.mod
          go.sum
          tests/init_test.go
          tests/state_test.go
          tests/state_test_util.go
          tests/testdata
    meowsbits committed Jul 7, 2020
    Configuration menu
    Copy the full SHA
    5ef5527 View commit details
    Browse the repository at this point in the history
  2. main,vm: fix remainder merge conflicts

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 7, 2020
    Configuration menu
    Copy the full SHA
    f08a3be View commit details
    Browse the repository at this point in the history
  3. go.sum: go.sum autoupdated

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 7, 2020
    Configuration menu
    Copy the full SHA
    1928e4e View commit details
    Browse the repository at this point in the history
  4. go.sum: updates go.sum

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 7, 2020
    Configuration menu
    Copy the full SHA
    5ed8083 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'feat/travis-arm64' into feat/evmc6

    Conflicts:
          .travis.yml
    meowsbits committed Jul 7, 2020
    Configuration menu
    Copy the full SHA
    f050ffe View commit details
    Browse the repository at this point in the history
  6. Makefile,go.sum: moar go.sum

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 7, 2020
    Configuration menu
    Copy the full SHA
    920f48c View commit details
    Browse the repository at this point in the history
  7. main: (lint) fmt, remove unused

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 7, 2020
    Configuration menu
    Copy the full SHA
    443e81b View commit details
    Browse the repository at this point in the history
  8. build/ssvm.sh: remove --no-check-certificate for wget

    Lets keep things a little safe, why not.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 7, 2020
    Configuration menu
    Copy the full SHA
    2e75660 View commit details
    Browse the repository at this point in the history
  9. build/hera.sh,build/ssvm.sh: peg hera to 0.2.5

    Which is the last evmcv6-compat tag.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 7, 2020
    Configuration menu
    Copy the full SHA
    16c518d View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2020

  1. .travis.yml,Makefile: refactor .so compile steps to makefile, use mak…

    …e cmds in travis
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    542f230 View commit details
    Browse the repository at this point in the history
  2. Makefile: remove make command using Makefile in evmc/...

    That command compiled the example_vm.so, but
    modifying the submodule isn't the happiest
    solution.
    
    It seems like go generate can/does do the same
    thing (?).
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    bd26c40 View commit details
    Browse the repository at this point in the history
  3. .travis.yml: remote go build evmc step, include make test-evmc

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    6fef068 View commit details
    Browse the repository at this point in the history
  4. .travis.yml: wait wait, github actions runs make test-evmc

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    26b3fc9 View commit details
    Browse the repository at this point in the history
  5. Makefile: remove hera and evmc from PHONY

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    f7ee0d7 View commit details
    Browse the repository at this point in the history
  6. Makefile: add evmc command as dep for make geth,all

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    c12c8de View commit details
    Browse the repository at this point in the history
  7. .github/workflows/evmc.yml: update github actions to use make command

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    a3aa429 View commit details
    Browse the repository at this point in the history
  8. Makefile: add 'all' as dep for lint

    This is getting ugly.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    afc3062 View commit details
    Browse the repository at this point in the history
  9. .travis.yml: fix lint stage submodules

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    10f4f58 View commit details
    Browse the repository at this point in the history
  10. Makefile: remove 'all' command as dep from 'lint'

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    f5cb460 View commit details
    Browse the repository at this point in the history
  11. .travis.yml: add comments

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    7dbe023 View commit details
    Browse the repository at this point in the history
  12. Makefile: add make steps for example_vm.so generation

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    00b8970 View commit details
    Browse the repository at this point in the history
  13. Makefile: all doesnt need evmc

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    3750374 View commit details
    Browse the repository at this point in the history
  14. Revert "Makefile: all doesnt need evmc"

    This reverts commit 3750374.
    
    Yes it does.
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    1ad653a View commit details
    Browse the repository at this point in the history
  15. Makefile: echo must respect escape chars

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    b2baee2 View commit details
    Browse the repository at this point in the history
  16. Makefile: gcc compilation of example_vm.so is from evmc_test.go

    and is only required for tests
    
    I GUESS the 'go generate' command should suffice to do
    the work of this compilation, making my adhoc-makefile
    thing completely redundant.
    
    Why wasn't this solved before, or why am I still
    messing with this?
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    52c82cd View commit details
    Browse the repository at this point in the history
  17. .travis.yml: travis dont peg to g++9, just use whatever we get

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    da7eb6c View commit details
    Browse the repository at this point in the history
  18. Makefile,build/evmc-example_vm.so.sh: add script to conditionalize tr…

    …avis vs. everyone else SO compilation
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    ec9b933 View commit details
    Browse the repository at this point in the history
  19. build/evmc-example_vm.so.sh: add debug flag and comments

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    6f38ba1 View commit details
    Browse the repository at this point in the history
  20. go.sum: go mod tidy

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    bf9a498 View commit details
    Browse the repository at this point in the history
  21. README.md: update readme with submodule clone instructions

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    c4711ff View commit details
    Browse the repository at this point in the history
  22. tests/testdata: update submodule to be equal to master

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    b3e35c9 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2020

  1. .gitmodules,evmc: remove evmc as submodule

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 9, 2020
    Configuration menu
    Copy the full SHA
    8b2e1dc View commit details
    Browse the repository at this point in the history
  2. evmc: git clone --branch v6.3.1 --depth 1 https://github.com/ethereum…

    …/evmc.git
    
    And rm -rf evmc/.git .gitignore
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 9, 2020
    Configuration menu
    Copy the full SHA
    6bd2cc2 View commit details
    Browse the repository at this point in the history
  3. evmc: skip tests if generated artifact example_vm.so is not present

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 9, 2020
    Configuration menu
    Copy the full SHA
    6a2070a View commit details
    Browse the repository at this point in the history
  4. evmc/README_COREGETH.md: documentation for included source and its re…

    …lative uses
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 9, 2020
    Configuration menu
    Copy the full SHA
    09efacd View commit details
    Browse the repository at this point in the history
  5. .travis.yml: remove Travis EVMC submodule actions

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 9, 2020
    Configuration menu
    Copy the full SHA
    b21e9fc View commit details
    Browse the repository at this point in the history
  6. build/evmc-example_vm.so.sh: shebang: use 'sh' instead of 'bash'

    Docker image complaining about 'bash' not being
    available.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 9, 2020
    Configuration menu
    Copy the full SHA
    aba05aa View commit details
    Browse the repository at this point in the history
  7. Makefile: remove 'evmc' command from 'test' command

    'make test' should run the standard go tests.
    It shouldn't do anything fancy.
    
    This moves the evmc-specific testing to one place, ensuring
    that tests both with and without the example_vm.so
    are run.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 9, 2020
    Configuration menu
    Copy the full SHA
    4eb48c5 View commit details
    Browse the repository at this point in the history
  8. Makefile: make clean-evmc should also remove example_vm.so

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 9, 2020
    Configuration menu
    Copy the full SHA
    1b22aa8 View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2020

  1. README.md: remove unnecessary submodules flag from clone cmd

    Since emvc/ is now a copy-cloned package instead
    of a submodule, this is no longer necessary.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 21, 2020
    Configuration menu
    Copy the full SHA
    ecd9db9 View commit details
    Browse the repository at this point in the history
  2. docs/core/evmc.md: minor syntax tweaks to emvc6 doc

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 21, 2020
    Configuration menu
    Copy the full SHA
    f42633e View commit details
    Browse the repository at this point in the history
  3. tests: remove whitespace-only changes

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 21, 2020
    Configuration menu
    Copy the full SHA
    d4c348a View commit details
    Browse the repository at this point in the history
  4. Makefile: reinstate all as predicate for test cmd

    This is congruent to go-ethereum implementation,
    although it does seem a little redundant/tangential.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 21, 2020
    Configuration menu
    Copy the full SHA
    f32e090 View commit details
    Browse the repository at this point in the history
  5. .travis.yml: init move evmc-test to travis

    I'd like to remove Github Actions as the CI
    for EVMC6 tests, since that's all its currently used for,
    and I think it'd be good to have our CI tests
    consolidated at one provider, if possible.
    
    This keeps CI visibility simple and predictable.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 21, 2020
    Configuration menu
    Copy the full SHA
    9359d66 View commit details
    Browse the repository at this point in the history
  6. .travis.yml: add job names for readability

    This improves CI readability.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 21, 2020
    Configuration menu
    Copy the full SHA
    63052ae View commit details
    Browse the repository at this point in the history
  7. .travis.yml: better names for travis jobs

    Remove the subjectivity a little, more
    descriptive.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 21, 2020
    Configuration menu
    Copy the full SHA
    a0b5fd0 View commit details
    Browse the repository at this point in the history
  8. build/evmc-example_vm.so.sh: fix example_vm.so script to be POSIX com…

    …patible
    
    Test failed on Travis because unknown operator.
    
    https://travis-ci.org/github/etclabscore/core-geth/jobs/710376273
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 21, 2020
    Configuration menu
    Copy the full SHA
    0c7a433 View commit details
    Browse the repository at this point in the history
  9. .travis.yml,docs/core/evmc.md: abort trying to get evmc tests to pass…

    … on Travis
    
    We can stick with Github Actions for now to avoid
    the CI headache.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 21, 2020
    Configuration menu
    Copy the full SHA
    9f50dc3 View commit details
    Browse the repository at this point in the history
  10. Makefile,build/evmone.sh,tests: install EVMOne 0.2.0 --evmc.evm .so S…

    …tateTest
    
    This installs a new test for --evmc.evm flag.
    It uses the ethereum/evmcone C++ standalone EVM
    .so artifact.
    
    Tests for Constantinople, Istanbul, and Phoenix are
    skipped because they are not supported by this latest-possible
    evmcv6-compatible EVMOne version.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 21, 2020
    Configuration menu
    Copy the full SHA
    6c74ead View commit details
    Browse the repository at this point in the history
  11. main,tests: revise skipForks to be a method params for StateTest type

    This moves the logic of skipping forks from adhoc in the
    StateTest runner (where it awkwardly used the testMatcher
    method in a 'special' way), to still using the testMatcher
    in a special way, but now more descriptively as a logic
    facet of the StateTest type itself in the Subtests method.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 21, 2020
    Configuration menu
    Copy the full SHA
    fb496f8 View commit details
    Browse the repository at this point in the history
  12. tests: (lint) goimports -w

    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 21, 2020
    Configuration menu
    Copy the full SHA
    764fd54 View commit details
    Browse the repository at this point in the history
  13. tests: remove unnecessary IstanbulBlock removal from difficulty test …

    …config
    
    This change is not related to the EVMC feature,
    and does not change test behavior, so striking it.
    
    IstanbulBlock existing is a no-op, since difficulty
    did not change at that fork anyways.
    
    Signed-off-by: meows <b5c6@protonmail.com>
    meowsbits committed Jul 21, 2020
    Configuration menu
    Copy the full SHA
    6d9e363 View commit details
    Browse the repository at this point in the history