Skip to content

Commit fbf82b4

Browse files
committed
Merge remote-tracking branch 'origin/develop' into tweak/tweak-fast-sync-config-params
2 parents 122b26d + 9d6bfab commit fbf82b4

File tree

271 files changed

+5448
-3261
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

271 files changed

+5448
-3261
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ project/plugins/project/
55
.ensime
66
.ensime_cache/
77
.bloop
8+
out/
89

910
# IDE folders
1011
.idea/
@@ -20,4 +21,4 @@ metals.sbt
2021
.evm-runner_history
2122

2223
# Nix
23-
result
24+
result

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Universal / mappings += (resourceDirectory in Compile).value / "logback.xml" ->
126126

127127
val sep = java.io.File.separator
128128
jdkPackagerJVMArgs := Seq(
129-
"-Dconfig.file=." + sep + "conf" + sep + "mantis.conf",
129+
"-Dconfig.file=." + sep + "conf" + sep + "app.conf",
130130
"-Dlogback.configurationFile=." + sep + "conf" + sep + "logback.xml",
131131
"-Xss10M"
132132
)

insomnia_workspace.json

Lines changed: 46 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"_type": "export",
33
"__export_format": 4,
4-
"__export_date": "2020-09-16T09:48:00.794Z",
4+
"__export_date": "2020-09-21T12:39:47.334Z",
55
"__export_source": "insomnia.desktop.app:v2020.3.3",
66
"resources": [
77
{
@@ -198,6 +198,50 @@
198198
"parentId": "wrk_097d43914a4d4aea8b6f73f647921182",
199199
"_type": "request_group"
200200
},
201+
{
202+
"_id": "req_0ff71c4f648c4d3782612e9c53179321",
203+
"authentication": {},
204+
"body": {
205+
"mimeType": "application/json",
206+
"text": "{\n\t\"jsonrpc\": \"2.0\",\n \"method\": \"eth_chainId\", \n\t\"params\": [],\n \"id\": 1\n}"
207+
},
208+
"created": 1600691926224,
209+
"description": "",
210+
"headers": [
211+
{
212+
"id": "pair_c33a6ada19dd4aa8b75527639519f427",
213+
"name": "Content-Type",
214+
"value": "application/json"
215+
}
216+
],
217+
"isPrivate": false,
218+
"metaSortKey": -1600691926224,
219+
"method": "POST",
220+
"modified": 1600691932451,
221+
"name": "eth_chainId",
222+
"parameters": [],
223+
"parentId": "fld_a06eb77e183c4727800eb7dc43ceabe1",
224+
"settingDisableRenderRequestBody": false,
225+
"settingEncodeUrl": true,
226+
"settingFollowRedirects": "global",
227+
"settingRebuildPath": true,
228+
"settingSendCookies": true,
229+
"settingStoreCookies": true,
230+
"url": "{{node_url}}",
231+
"_type": "request"
232+
},
233+
{
234+
"_id": "fld_a06eb77e183c4727800eb7dc43ceabe1",
235+
"created": 1552939140291,
236+
"description": "",
237+
"environment": {},
238+
"environmentPropertyOrder": null,
239+
"metaSortKey": -1552939140292,
240+
"modified": 1599825661277,
241+
"name": "Eth",
242+
"parentId": "wrk_097d43914a4d4aea8b6f73f647921182",
243+
"_type": "request_group"
244+
},
201245
{
202246
"_id": "req_b60c1a4f9d604d868910f967c6a070d7",
203247
"authentication": {},
@@ -235,18 +279,6 @@
235279
"url": "{{ node_url }}",
236280
"_type": "request"
237281
},
238-
{
239-
"_id": "fld_a06eb77e183c4727800eb7dc43ceabe1",
240-
"created": 1552939140291,
241-
"description": "",
242-
"environment": {},
243-
"environmentPropertyOrder": null,
244-
"metaSortKey": -1552939140292,
245-
"modified": 1599825661277,
246-
"name": "Eth",
247-
"parentId": "wrk_097d43914a4d4aea8b6f73f647921182",
248-
"_type": "request_group"
249-
},
250282
{
251283
"_id": "req_97fa82439e3e46bfb8ee26400af6215d",
252284
"authentication": {},
@@ -797,4 +829,4 @@
797829
"_type": "environment"
798830
}
799831
]
800-
}
832+
}

project/Dependencies.scala

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ object Dependencies {
2525
)
2626
}
2727

28-
val json4s = Seq("org.json4s" %% "json4s-native" % "3.5.4")
28+
val json4s = Seq("org.json4s" %% "json4s-native" % "3.6.9")
2929

3030
val circe: Seq[ModuleID] = {
31-
val circeVersion = "0.12.1" //0.9.3
31+
val circeVersion = "0.13.0"
3232

3333
Seq(
3434
"io.circe" %% "circe-core" % circeVersion,
@@ -45,28 +45,29 @@ object Dependencies {
4545
)
4646

4747
val enumeratum: Seq[ModuleID] = Seq(
48-
"com.beachape" %% "enumeratum" % "1.5.13",
49-
"com.beachape" %% "enumeratum-cats" % "1.5.15",
50-
"com.beachape" %% "enumeratum-scalacheck" % "1.5.16" % Test
48+
"com.beachape" %% "enumeratum" % "1.6.1",
49+
"com.beachape" %% "enumeratum-cats" % "1.6.1",
50+
"com.beachape" %% "enumeratum-scalacheck" % "1.6.1" % Test
5151
)
5252

5353
val testing: Seq[ModuleID] = Seq(
54-
"org.scalatest" %% "scalatest" % "3.0.8" % "it,test",
55-
"org.scalamock" %% "scalamock-scalatest-support" % "3.6.0" % "test",
54+
"org.scalatest" %% "scalatest" % "3.2.2" % "it,test",
55+
"org.scalamock" %% "scalamock" % "5.0.0" % "test",
56+
"org.scalatestplus" %% "scalacheck-1-14" % "3.2.2.0" % "test",
5657
"org.scalacheck" %% "scalacheck" % "1.14.1" % "it,test"
5758
)
5859

5960
val cats: Seq[ModuleID] = {
60-
val catsVersion = "2.0.0"
61+
val catsVersion = "2.2.0"
6162
Seq(
62-
"org.typelevel" %% "mouse" % "0.23",
63+
"org.typelevel" %% "mouse" % "0.25",
6364
"org.typelevel" %% "cats-core" % catsVersion,
6465
"org.typelevel" %% "cats-effect" % catsVersion
6566
)
6667
}
6768

6869
val monix = Seq(
69-
"io.monix" %% "monix" % "3.1.0"
70+
"io.monix" %% "monix" % "3.2.2"
7071
)
7172

7273
val logging = Seq(

0 commit comments

Comments
 (0)