Compare commits

..

No commits in common. "5051f75b52bcca5c9bf9f708beb9eda90cbadfba" and "ae7d1ad2a7343770342c792607abcc046bc0c2e2" have entirely different histories.

5 changed files with 9 additions and 11 deletions

View File

@ -8,10 +8,10 @@ import (
func (suite *IntegrationTestSuite) TestUpgrade_PreciseBankReserveTransfer() { func (suite *IntegrationTestSuite) TestUpgrade_PreciseBankReserveTransfer() {
suite.SkipIfUpgradeDisabled() suite.SkipIfUpgradeDisabled()
beforeUpgradeCtx := suite.ZgChain.Grpc.CtxAtHeight(suite.UpgradeHeight - 1) // beforeUpgradeCtx := suite.Kava.Grpc.CtxAtHeight(suite.UpgradeHeight - 1)
afterUpgradeCtx := suite.ZgChain.Grpc.CtxAtHeight(suite.UpgradeHeight) // afterUpgradeCtx := suite.Kava.Grpc.CtxAtHeight(suite.UpgradeHeight)
grpcClient := suite.ZgChain.Grpc // grpcClient := suite.Kava.Grpc
// ----------------------------- // -----------------------------
// Get initial reserve balances // Get initial reserve balances

View File

@ -5,7 +5,7 @@ import (
"testing" "testing"
sdkmath "cosmossdk.io/math" sdkmath "cosmossdk.io/math"
"github.com/0glabs/0g-chain/chaincfg" "github.com/0glabs/0g-chain/app"
"github.com/0glabs/0g-chain/x/precisebank/types" "github.com/0glabs/0g-chain/x/precisebank/types"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
) )
@ -74,7 +74,7 @@ func TestNewFractionalBalance(t *testing.T) {
} }
func TestFractionalBalance_Validate(t *testing.T) { func TestFractionalBalance_Validate(t *testing.T) {
chaincfg.SetSDKConfig() app.SetSDKConfig()
tests := []struct { tests := []struct {
name string name string

View File

@ -7,14 +7,14 @@ import (
"testing" "testing"
sdkmath "cosmossdk.io/math" sdkmath "cosmossdk.io/math"
"github.com/0glabs/0g-chain/chaincfg" "github.com/0glabs/0g-chain/app"
"github.com/0glabs/0g-chain/x/precisebank/types" "github.com/0glabs/0g-chain/x/precisebank/types"
sdk "github.com/cosmos/cosmos-sdk/types" sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
) )
func TestFractionalBalances_Validate(t *testing.T) { func TestFractionalBalances_Validate(t *testing.T) {
chaincfg.SetSDKConfig() app.SetSDKConfig()
tests := []struct { tests := []struct {
name string name string

View File

@ -4,7 +4,7 @@ import (
"testing" "testing"
sdkmath "cosmossdk.io/math" sdkmath "cosmossdk.io/math"
"github.com/0glabs/0g-chain/chaincfg" "github.com/0glabs/0g-chain/app"
"github.com/0glabs/0g-chain/x/precisebank/testutil" "github.com/0glabs/0g-chain/x/precisebank/testutil"
"github.com/0glabs/0g-chain/x/precisebank/types" "github.com/0glabs/0g-chain/x/precisebank/types"
sdk "github.com/cosmos/cosmos-sdk/types" sdk "github.com/cosmos/cosmos-sdk/types"
@ -12,7 +12,7 @@ import (
) )
func TestGenesisStateValidate_Basic(t *testing.T) { func TestGenesisStateValidate_Basic(t *testing.T) {
chaincfg.SetSDKConfig() app.SetSDKConfig()
testCases := []struct { testCases := []struct {
name string name string

View File

@ -12,8 +12,6 @@ import (
tmprototypes "github.com/cometbft/cometbft/proto/tendermint/types" tmprototypes "github.com/cometbft/cometbft/proto/tendermint/types"
"github.com/0glabs/0g-chain/app" "github.com/0glabs/0g-chain/app"
"github.com/0glabs/0g-chain/x/pricefeed/keeper"
"github.com/0glabs/0g-chain/x/pricefeed/testutil"
"github.com/0glabs/0g-chain/x/pricefeed/types" "github.com/0glabs/0g-chain/x/pricefeed/types"
) )