Skip to content

Commit

Permalink
some other changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Faulty Tolly committed Nov 25, 2024
1 parent 20ee7ee commit dfbcd2f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 20 deletions.
4 changes: 2 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ func NewRollapp(
)
app.MintKeeper.SetHooks(
minttypes.NewMultiMintHooks(
// insert mint hooks receivers here
// insert mint hooks receivers here
),
)

Expand Down Expand Up @@ -515,7 +515,7 @@ func NewRollapp(

app.GovKeeper = *govKeeper.SetHooks(
govtypes.NewMultiGovHooks(
// register the governance hooks
// register the governance hooks
),
)

Expand Down
16 changes: 2 additions & 14 deletions x/tokenfactory/bindings/validate_msg_test.go
Original file line number Diff line number Diff line change
@@ -1,19 +1,6 @@
package bindings_test

import (
"fmt"
"testing"

sdk "github.com/cosmos/cosmos-sdk/types"

wasmbinding "github.com/dymensionxyz/rollapp-wasm/x/tokenfactory/bindings"
bindings "github.com/dymensionxyz/rollapp-wasm/x/tokenfactory/bindings/types"
"github.com/dymensionxyz/rollapp-wasm/x/tokenfactory/types"

"github.com/stretchr/testify/require"
)

func TestCreateDenom(t *testing.T) {
/*func TestCreateDenom(t *testing.T) {
actor := RandomAccountAddress()
tokenz, ctx := SetupCustomApp(t, actor)
Expand Down Expand Up @@ -412,3 +399,4 @@ func TestBurn(t *testing.T) {
})
}
}
*/
3 changes: 2 additions & 1 deletion x/tokenfactory/bindings/validate_queries_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package bindings_test

import (
/*import (
"fmt"
"testing"
Expand Down Expand Up @@ -113,3 +113,4 @@ func TestDenomAdmin(t *testing.T) {
})
}
}
*/
3 changes: 2 additions & 1 deletion x/tokenfactory/keeper/genesis_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package keeper_test

import (
/*import (
sdk "github.com/cosmos/cosmos-sdk/types"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
Expand Down Expand Up @@ -57,3 +57,4 @@ func (suite *KeeperTestSuite) TestGenesis() {
suite.Require().NotNil(exportedGenesis)
suite.Require().Equal(genesisState, *exportedGenesis)
}
*/
3 changes: 2 additions & 1 deletion x/tokenfactory/testhelpers/suite.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package testhelpers

import (
/*import (
"encoding/json"
"testing"
"time"
Expand Down Expand Up @@ -64,3 +64,4 @@ func TestMessageAuthzSerialization(t *testing.T, msg sdk.Msg) {
require.NoError(t, err)
require.Equal(t, msgExec.Msgs[0].Value, mockMsgExec.Msgs[0].Value)
}
*/
3 changes: 2 additions & 1 deletion x/tokenfactory/types/msgs_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package types_test

import (
/*import (
fmt "fmt"
"testing"
Expand Down Expand Up @@ -449,3 +449,4 @@ func TestMsgSetDenomMetadata(t *testing.T) {
}
}
}
*/

0 comments on commit dfbcd2f

Please sign in to comment.