Skip to content

Commit 5814c4b

Browse files
committed
Added Mainnet config
1 parent 711e19e commit 5814c4b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ whitespace += $(whitespace)
4545
comma := ,
4646
build_tags_comma_sep := $(subst $(whitespace),$(comma),$(build_tags))
4747

48-
network := Testnet
48+
network := Mainnet
4949

5050
# process linker flags
5151

app/app.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ const appName = "GaiaApp"
3434

3535
var (
3636
// default home directories for kicli
37-
DefaultCLIHome = os.ExpandEnv("$HOME/.tkicli")
37+
DefaultCLIHome = os.ExpandEnv("$HOME/.kicli")
3838

3939
// default home directories for kid
40-
DefaultNodeHome = os.ExpandEnv("$HOME/.tkid")
40+
DefaultNodeHome = os.ExpandEnv("$HOME/.kid")
4141

4242
// The module BasicManager is in charge of setting up basic,
4343
// non-dependant module elements, such as codec registration

cmd/kicli/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
)
2828

2929
const(
30-
Bech32MainPrefix = "tki"
30+
Bech32MainPrefix = "ki"
3131

3232
// Atom in https://github.com/satoshilabs/slips/blob/master/slip-0044.md
3333
// CoinType = 118

cmd/kid/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const(
3131
flagInvCheckPeriod = "inv-check-period"
3232

3333

34-
Bech32MainPrefix = "tki"
34+
Bech32MainPrefix = "ki"
3535

3636
// Atom in https://github.com/satoshilabs/slips/blob/master/slip-0044.md
3737
// CoinType = 118

cmd/kidebug/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
)
2323

2424
const(
25-
Bech32MainPrefix = "tki"
25+
Bech32MainPrefix = "ki"
2626

2727
// Atom in https://github.com/satoshilabs/slips/blob/master/slip-0044.md
2828
// CoinType = 118

0 commit comments

Comments
 (0)