bitcoin-atm
bitcoin atm for pyc inc.
git clone https://9o.is/git/bitcoin-atm.git
MockConfig.scala
(425B)
1 package inc.pyc.chimera
2
3 import com.typesafe.config.ConfigFactory
4
5 object MockConfig {
6 val config = ConfigFactory.parseString("""
7 akka {
8 loglevel = "INFO"
9 loggers = [akka.testkit.TestEventListener]
10 stdout-loglevel = "OFF"
11 }
12 chimera {
13 guid = "testguid"
14 name = "TestName"
15 currency = "USD"
16
17 user {
18 url = "http://127.0.0.1:8080"
19 secret = "secretpass"
20 }
21 }
22 aws {
23 accessKey = ""
24 secretKey = ""
25 }
26 """)
27 }