forked from cerc-io/ipld-eth-server
102beb11e3
* Right now, the two environments are Public and Private * This was to reflect the two blockchains we run against
12 lines
167 B
Go
12 lines
167 B
Go
package config
|
|
|
|
func Private() Config {
|
|
return Config{
|
|
Database: Database{
|
|
Name: "vulcanize_private",
|
|
Hostname: "localhost",
|
|
Port: 5432,
|
|
},
|
|
}
|
|
}
|