Skip to content

Commit

Permalink
bugfix: feather-core requires chain id in 'genesis gentx'
Browse files Browse the repository at this point in the history
  • Loading branch information
KendrickAng committed May 12, 2023
1 parent 8d8072b commit dc67659
Showing 1 changed file with 33 additions and 32 deletions.
65 changes: 33 additions & 32 deletions config/localnet/config.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,40 @@
{
"accounts": [
{
"name": "alice",
"coins": [
"chain_id": "test-chain",
"accounts": [
{
"denom": "token",
"amount": "20000"
"name": "alice",
"coins": [
{
"denom": "token",
"amount": "20000"
},
{
"denom": "stake",
"amount": "200000000"
}
]
},
{
"denom": "stake",
"amount": "200000000"
"name": "bob",
"coins": [
{
"denom": "token",
"amount": "10000"
},
{
"denom": "stake",
"amount": "100000000"
}
]
}
]
},
{
"name": "bob",
"coins": [
],
"validators": [
{
"denom": "token",
"amount": "10000"
},
{
"denom": "stake",
"amount": "100000000"
"name": "alice",
"bonded": {
"denom": "stake",
"amount": "100000000"
}
}
]
}
],
"validators": [
{
"name": "alice",
"bonded": {
"denom": "stake",
"amount": "100000000"
}
}
]
}
]
}

0 comments on commit dc67659

Please sign in to comment.