File tree 1 file changed +38
-0
lines changed
1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ diff --git a/Makefile b/Makefile
2
+ index ace31ae09..6817136ae 100644
3
+ --- a/Makefile
4
+ +++ b/Makefile
5
+ @@ -61,7 +61,7 @@ BUILD_DEPS+=ffi-version-check
6
+ $(MODULES): build/.update-modules ;
7
+ # dummy file that marks the last time modules were updated
8
+ build/.update-modules:
9
+ - git submodule update --init --recursive
10
+ + git submodule update --init --recursive || echo "git submodule update failed"
11
+ touch $@
12
+
13
+ # end git modules
14
+ diff --git a/docker/devnet/Dockerfile.source b/docker/devnet/Dockerfile.source
15
+ index 785b0de96..2114a996d 100644
16
+ --- a/docker/devnet/Dockerfile.source
17
+ +++ b/docker/devnet/Dockerfile.source
18
+ @@ -23,6 +23,7 @@ RUN apt update && apt install -y \
19
+ gcc git \
20
+ hwloc \
21
+ jq \
22
+ + nodejs \
23
+ libhwloc-dev wget \
24
+ mesa-opencl-icd \
25
+ ocl-icd-opencl-dev
26
+ diff --git a/node/config/def.go b/node/config/def.go
27
+ index 18364c996..041fff7e8 100644
28
+ --- a/node/config/def.go
29
+ +++ b/node/config/def.go
30
+ @@ -76,7 +76,7 @@ func DefaultBoost() *Boost {
31
+ },
32
+
33
+ ContractDeals: ContractDealsConfig{
34
+ - Enabled: false,
35
+ + Enabled: true,
36
+ AllowlistContracts: []string{},
37
+ From: "0x0000000000000000000000000000000000000000",
38
+ },
You can’t perform that action at this time.
0 commit comments