Skip to content

Commit e14628b

Browse files
committed
App renamed from grothendieck to mantis
1 parent 0167a0e commit e14628b

File tree

12 files changed

+25
-25
lines changed

12 files changed

+25
-25
lines changed

src/main/resources/application.conf

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
grothendieck {
1+
mantis {
22
# Identifier used when connecting to other clients
3-
client-id = "grothendieck"
3+
client-id = "mantis"
44

55
# Version string (reported by an RPC method)
6-
client-version = "grothendieck/v0.1"
6+
client-version = "mantis/v0.1"
77

88
# Base directory where all the data used by the node is stored, including blockchain data and private keys
9-
datadir = ${user.home}"/.grothendieck"
9+
datadir = ${user.home}"/.mantis"
1010

1111
# The unencrypted private key of this node
12-
node-key-file = ${grothendieck.datadir}"/nodeId.keys"
12+
node-key-file = ${mantis.datadir}"/nodeId.keys"
1313

1414
# Keystore directory: stores encrypted private keys of accounts managed by this node
15-
keystore-dir = ${grothendieck.datadir}"/keystore"
15+
keystore-dir = ${mantis.datadir}"/keystore"
1616

1717
# timeout for shutting down the ActorSystem
1818
shutdown-timeout = "15.seconds"
@@ -321,12 +321,12 @@ grothendieck {
321321
db {
322322
# IODB database is not currently used
323323
iodb {
324-
path = ${grothendieck.datadir}"/iodb/"
324+
path = ${mantis.datadir}"/iodb/"
325325
}
326326

327327
leveldb {
328328
# LevelDB data directory
329-
path = ${grothendieck.datadir}"/leveldb/"
329+
path = ${mantis.datadir}"/leveldb/"
330330

331331
# Create DB data directory if it's missing
332332
create-if-missing = true

src/main/scala/io/iohk/ethereum/utils/Config.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import scala.util.Try
1919

2020
object Config {
2121

22-
val config = ConfigFactory.load().getConfig("grothendieck")
22+
val config = ConfigFactory.load().getConfig("mantis")
2323

2424
val clientId: String = config.getString("client-id")
2525

src/test/resources/application.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
grothendieck {
2-
datadir = "/tmp/grothendieck-test/"
1+
mantis {
2+
datadir = "/tmp/mantis-test/"
33

44
secure-random-algo = "NativePRNGNonBlocking"
55

src/test/scala/io/iohk/ethereum/jsonrpc/JsonRpcControllerSpec.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class JsonRpcControllerSpec extends FlatSpec with Matchers with PropertyChecks w
7373
response.jsonrpc shouldBe "2.0"
7474
response.id shouldBe JInt(1)
7575
response.error shouldBe None
76-
response.result shouldBe Some(JString("grothendieck/v0.1"))
76+
response.result shouldBe Some(JString("mantis/v0.1"))
7777
}
7878

7979
it should "Handle net_peerCount request" in new TestSetup {
@@ -159,7 +159,7 @@ class JsonRpcControllerSpec extends FlatSpec with Matchers with PropertyChecks w
159159
val web3Response = jsonRpcController.handleRequest(web3RpcRequest).futureValue
160160

161161
web3Response.error shouldBe None
162-
web3Response.result shouldBe Some(JString("grothendieck/v0.1"))
162+
web3Response.result shouldBe Some(JString("mantis/v0.1"))
163163
}
164164

165165
it should "handle eth_getBlockTransactionCountByHash request" in new TestSetup {

src/universal/conf/application.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
-Dconfig.file=./conf/grothendieck.conf -Dlogback.configurationFile=./conf/logback.xml -Xss10M
1+
-Dconfig.file=./conf/mantis.conf -Dlogback.configurationFile=./conf/logback.xml -Xss10M

src/universal/conf/blockchain.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grothendieck {
1+
mantis {
22
blockchain {
33
# Frontier block number
44
# frontier-block-number = "0"

src/universal/conf/grothendieck.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This is the main configuration file for the Grothendieck ETC client.
1+
# This is the main configuration file for the Mantis ETC client.
22
# It consist of series of include where actual settings are defined.
33

44

src/universal/conf/misc.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grothendieck {
1+
mantis {
22
txPool {
33
# Maximum number of pending transaction kept in the pool
44
# tx-pool-size = 1000

src/universal/conf/morden.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grothendieck {
1+
mantis {
22
network {
33
discovery.bootstrap-nodes = [
44
"enode://e731347db0521f3476e6bbbb83375dcd7133a1601425ebd15fd10f3835fd4c304fba6282087ca5a0deeafadf0aa0d4fd56c3323331901c1f38bd181c283e3e35@128.199.55.137:30303",

src/universal/conf/network.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grothendieck {
1+
mantis {
22

33
network {
44

src/universal/conf/storage.conf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
grothendieck {
1+
mantis {
22

33
# Base directory where all the data used by the node is stored, including blockchain data and private keys
4-
# datadir = ${user.home}"/.grothendieck"
4+
# datadir = ${user.home}"/.mantis"
55

66
# The unencrypted private key of this node
7-
# node-key-file = ${grothendieck.datadir}"/nodeId.key"
7+
# node-key-file = ${mantis.datadir}"/nodeId.key"
88

99
# Keystore directory: stores encrypted private keys of accounts managed by this node
10-
# keystore-dir = ${grothendieck.datadir}"/keystore"
10+
# keystore-dir = ${mantis.datadir}"/keystore"
1111

1212
db {
1313
leveldb {
1414
# LevelDB data directory
15-
# path = ${grothendieck.datadir}"/leveldb/"
15+
# path = ${mantis.datadir}"/leveldb/"
1616
}
1717
}
1818

src/universal/conf/sync.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grothendieck {
1+
mantis {
22
sync {
33
# Whether to enable fast-sync
44
# do-fast-sync = true

0 commit comments

Comments
 (0)