Skip to content

Commit

Permalink
Merge pull request #112 from ethereum/develop
Browse files Browse the repository at this point in the history
use Yolov2
  • Loading branch information
winsvega authored Oct 29, 2020
2 parents ebacb54 + 60bef1d commit ab0e685
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ HunterGate(
LOCAL
)

project(retesteth VERSION 0.0.8)
set(VERSION_SUFFIX "docker")
project(retesteth VERSION 0.0.9)
set(VERSION_SUFFIX "berlin")

set(Boost_USE_STATIC_LIBS ON)
set(Boost_USE_MULTITHREADED ON)
Expand Down
8 changes: 4 additions & 4 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,23 +149,23 @@ jobs:
- image: ethereum/cpp-build-env:7
steps: *linux-steps

macOS-XCode9:
macOS-XCode10:
environment:
- CXX: clang++
- GCOV: gcov
- GENERATOR: Ninja
- BUILD_PARALLEL_JOBS: 8
- TEST_PARALLEL_JOBS: 8
macos:
xcode: "9.0"
xcode: "10.0"
steps:
- checkout
- *environment-info
- run:
name: "Install macOS dependencies"
# Python3 and requests are needed for Hunter upload.
command: |
HOMEBREW_NO_AUTO_UPDATE=1 brew install -q llvm37 cmake ninja python3
HOMEBREW_NO_AUTO_UPDATE=1 brew install -q cmake ninja python3
pip3 install -q requests gitpython
- *configureMac
# - *upload-hunter-cache
Expand All @@ -182,6 +182,6 @@ workflows:
version: 2
cpp-ethereum:
jobs:
- macOS-XCode9
- macOS-XCode10
- Linux-Clang6
- Linux-GCC6-Debug
2 changes: 1 addition & 1 deletion retesteth/configs/genesis/default/Berlin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const string default_Berlin_config = R"({

const string t8ntool_Berlin_config = R"({
"params" : {
"fork" : "YOLOv1",
"fork" : "YOLOv2",
"constantinopleForkBlock" : "0x00",
"byzantiumForkBlock" : "0x00",
"homesteadForkBlock" : "0x00"
Expand Down
5 changes: 3 additions & 2 deletions retesteth/configs/genesis/default/correctMiningReward.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ const string t8ntool_correctMiningReward_config = R"({
"Istanbul": "2000000000000000000",
"Berlin" : "2000000000000000000",
"//comment" : "Retesteth calculate rewards on behalf ot the tool when filling state tests",
"YOLOv1" : "2000000000000000000"
"//comment" : "Retesteth calculate rewards on behalf of the tool when filling state tests",
"YOLOv1" : "2000000000000000000",
"YOLOv2" : "2000000000000000000"
})";

genRewardsCfg::genRewardsCfg()
Expand Down

0 comments on commit ab0e685

Please sign in to comment.