Use registry-sdk mainnet branch for tests
Integration Tests / test-integration (pull_request) Failing after 1m44s
Unit Tests / test-unit (pull_request) Successful in 1m47s
E2E Tests / test-e2e (pull_request) Failing after 1m55s
SDK Tests / sdk_tests_nameservice_expiry (pull_request) Failing after 4m25s
SDK Tests / sdk_tests (pull_request) Failing after 4m32s
SDK Tests / sdk_tests_authority_auctions (pull_request) Failing after 10m3s

This commit is contained in:
2025-05-13 12:28:36 +05:30
parent 66118cc23d
commit 0615e653f1
4 changed files with 4 additions and 4 deletions
@@ -17,7 +17,7 @@ jobs:
path: "./registry-sdk/"
repository: cerc-io/registry-sdk
fetch-depth: 0
ref: main
ref: mainnet
- name: Environment
run: ls -tlh && env
+1 -1
View File
@@ -17,7 +17,7 @@ jobs:
path: "./registry-sdk/"
repository: cerc-io/registry-sdk
fetch-depth: 0
ref: main
ref: mainnet
- name: Environment
run: ls -tlh && env
+1 -1
View File
@@ -17,7 +17,7 @@ jobs:
path: "./registry-sdk/"
repository: cerc-io/registry-sdk
fetch-depth: 0
ref: main
ref: mainnet
- name: Environment
run: ls -tlh && env
+1 -1
View File
@@ -28,7 +28,7 @@ func checkTxFeeWithValidatorMinGasPrices(ctx sdk.Context, tx sdk.Tx) (sdk.Coins,
// Only allow alps | lps as a fee token
for _, coin := range feeCoins {
if coin.Denom != params.BaseCoinUnit && coin.Denom != params.CoinUnit {
return nil, 0, errorsmod.Wrapf(sdkerrors.ErrInvalidCoins, "only %s or %s are accepted as fee denom", params.BaseCoinUnit, params.CoinUnit)
return nil, 0, errorsmod.Wrapf(sdkerrors.ErrInvalidCoins, "invalid fee denom %s, only %s or %s are accepted", coin.Denom, params.BaseCoinUnit, params.CoinUnit)
}
}