Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- Add min-stake filtering for cosmos-sdk votes in the gov ante handler [#279](https://github.com/atomone-hub/atomone/pull/279)
- Prevent the designated authority to be set as the Oversight or Steering DAO address [#314](https://github.com/atomone-hub/atomone/pull/314)
- Oversight DAO and Steering DAO addresses cannot be the same [#309](https://github.com/atomone-hub/atomone/pull/309)
- Fix broken testnet subcommands [#337](https://github.com/atomone-hub/atomone/pull/337)

### DEPENDENCIES

Expand Down
4 changes: 2 additions & 2 deletions cmd/atomoned/cmd/testnet.go
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ func collectGenFiles(
return err
}

nodeAppState, err := genutil.GenAppStateFromConfig(clientCtx.Codec, clientCtx.TxConfig, nodeConfig, initCfg, appGenesis, genBalIterator, genutiltypes.DefaultMessageValidator, clientCtx.InterfaceRegistry.SigningContext().AddressCodec())
nodeAppState, err := genutil.GenAppStateFromConfig(clientCtx.Codec, clientCtx.TxConfig, nodeConfig, initCfg, appGenesis, genBalIterator, genutiltypes.DefaultMessageValidator, clientCtx.InterfaceRegistry.SigningContext().ValidatorAddressCodec())
if err != nil {
return err
}
Expand Down Expand Up @@ -540,7 +540,7 @@ func startTestnet(cmd *cobra.Command, args startArgs) error {
}

func NewTestNetworkFixture() network.TestFixture {
dir, err := os.MkdirTemp("", atomone.DefaultNodeHome)
dir, err := os.MkdirTemp("", filepath.Base(atomone.DefaultNodeHome))
if err != nil {
panic(fmt.Sprintf("failed creating temporary directory: %v", err))
}
Expand Down
Loading