Skip to content

Commit

Permalink
chore(x/genutil): cleanup CollectTxs (#17816)
Browse files Browse the repository at this point in the history
  • Loading branch information
odeke-em authored Sep 21, 2023
1 parent 6715b5a commit 0abb4e6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions x/genutil/collect.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ func CollectTxs(cdc codec.JSONCodec, txJSONDecoder sdk.TxDecoder, moniker, genTx
return appGenTxs, persistentPeers, err
}

var fos []os.DirEntry
fos, err = os.ReadDir(genTxsDir)
fos, err := os.ReadDir(genTxsDir)
if err != nil {
return appGenTxs, persistentPeers, err
}
Expand All @@ -96,6 +95,9 @@ func CollectTxs(cdc codec.JSONCodec, txJSONDecoder sdk.TxDecoder, moniker, genTx
// addresses and IPs (and port) validator server info
var addressesIPs []string

// TODO (https://github.com/cosmos/cosmos-sdk/issues/17815):
// Examine CPU and RAM profiles to see if we can parsing
// and ValidateAndGetGenTx concurrent.
for _, fo := range fos {
if fo.IsDir() {
continue
Expand Down Expand Up @@ -151,7 +153,7 @@ func CollectTxs(cdc codec.JSONCodec, txJSONDecoder sdk.TxDecoder, moniker, genTx
return appGenTxs, persistentPeers, fmt.Errorf("account %s balance not in genesis state: %+v", valAccAddr, balancesMap)
}

_, valOk := balancesMap[sdk.AccAddress(valAddr).String()]
_, valOk := balancesMap[valAccAddr]
if !valOk {
_, file, no, ok := runtime.Caller(1)
if ok {
Expand Down

0 comments on commit 0abb4e6

Please sign in to comment.