Skip to content

Commit d9f1b5c

Browse files
author
Łukasz Gąsior
committed
Cleanup
1 parent a5930d7 commit d9f1b5c

File tree

3 files changed

+17
-14
lines changed

3 files changed

+17
-14
lines changed

build.sbt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ val commonSettings = Seq(
99

1010
// Temp resolver for LevelDB fork
1111
resolvers += "stepsoft" at "http://nexus.mcsherrylabs.com/repository/releases/"
12-
resolvers += "softprops-maven" at "http://dl.bintray.com/content/softprops/maven"
1312

1413
val dep = {
1514
val akkaVersion = "2.4.17"

src/main/resources/application.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ mantis {
1818
shutdown-timeout = "15.seconds"
1919

2020
# Whether to run Mantis in test mode (enables test_ RPC endpoints; similar to --test flag in cpp-ethereum)
21-
testmode = true
21+
testmode = false
2222

2323
# one of the algorithms defined here:
2424
# https://docs.oracle.com/javase/8/docs/technotes/guides/security/StandardNames.html#SecureRandom

src/universal/conf/testmode.conf

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
1-
mantis.testmode = true
1+
mantis {
22

3-
mantis.datadir = ${user.home}"/.mantis-testmode"
3+
testmode = true
44

5-
mantis.network.discovery {
6-
discovery-enabled = false
7-
bootstrap-nodes = []
8-
}
5+
datadir = ${user.home}"/.mantis-testmode"
96

10-
mantis.pruning.mode = "archive"
7+
network.discovery {
8+
discovery-enabled = false
9+
bootstrap-nodes = []
10+
}
1111

12-
mantis.blockchain = {
13-
eip160-block-number = "0"
14-
}
12+
pruning.mode = "archive"
13+
14+
blockchain = {
15+
eip160-block-number = "0"
16+
}
17+
18+
network.rpc {
19+
apis = "eth,web3,net,personal,daedalus,test"
20+
}
1521

16-
mantis.network.rpc {
17-
apis = "eth,web3,net,personal,daedalus,test"
1822
}

0 commit comments

Comments
 (0)