diff --git a/tests/integration/cli/config.go b/tests/integration/cli/config.go index 974230055..ba67e14e6 100644 --- a/tests/integration/cli/config.go +++ b/tests/integration/cli/config.go @@ -11,7 +11,7 @@ const ( KeyringBackend = "test" OutputFormat = "json" Gas = "auto" - GasAdjustment = "20" + GasAdjustment = "3.5" GasPrices = "10000ncheq" ) diff --git a/tests/integration/cli_defi_test.go b/tests/integration/cli_defi_test.go index c7c6e81c2..805707d0e 100644 --- a/tests/integration/cli_defi_test.go +++ b/tests/integration/cli_defi_test.go @@ -25,8 +25,8 @@ var _ = Describe("Upgrade - Burn coins from relevant message signer", func() { // assert no error Expect(err).To(BeNil()) - // generate fixed fees, in which case 500,000,000 ncheq or 0.5 cheq - fees := helpers.GenerateFees("500000000ncheq") + // generate fixed fees, in which case 1,000,000,000 ncheq or 1 cheq + fees := helpers.GenerateFees("1000000000ncheq") // burn the coins res, err := cli.BurnMsg(testdata.BASE_ACCOUNT_1, burnCoins.String(), fees)