Handle failing e2e tests
Build / build (pull_request) Successful in 2m43s
Protobuf / lint (pull_request) Successful in 13s
Integration Tests / test-integration (pull_request) Successful in 2m7s
E2E Tests / test-e2e (pull_request) Successful in 3m41s
SDK Tests / sdk_tests_nameservice_expiry (pull_request) Successful in 7m51s
Unit Tests / test-unit (pull_request) Successful in 1m53s
SDK Tests / sdk_tests_auctions (pull_request) Failing after 12m54s
SDK Tests / sdk_tests (pull_request) Failing after 10m13s
Build / build (pull_request) Successful in 2m43s
Protobuf / lint (pull_request) Successful in 13s
Integration Tests / test-integration (pull_request) Successful in 2m7s
E2E Tests / test-e2e (pull_request) Successful in 3m41s
SDK Tests / sdk_tests_nameservice_expiry (pull_request) Successful in 7m51s
Unit Tests / test-unit (pull_request) Successful in 1m53s
SDK Tests / sdk_tests_auctions (pull_request) Failing after 12m54s
SDK Tests / sdk_tests (pull_request) Failing after 10m13s
This commit is contained in:
@@ -174,11 +174,10 @@ func GetCmdCreateAuction() *cobra.Command {
|
||||
return err
|
||||
}
|
||||
|
||||
numProvidersInt, err := strconv.Atoi(args[7])
|
||||
numProviders, err := strconv.ParseInt(args[7], 10, 32)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
numProviders := int32(numProvidersInt)
|
||||
|
||||
msg := auctiontypes.NewMsgCreateAuction(
|
||||
kind,
|
||||
@@ -188,7 +187,7 @@ func GetCmdCreateAuction() *cobra.Command {
|
||||
revealFee,
|
||||
minimumBid,
|
||||
maxPrice,
|
||||
numProviders,
|
||||
int32(numProviders),
|
||||
clientCtx.GetFromAddress(),
|
||||
)
|
||||
err = msg.ValidateBasic()
|
||||
|
||||
Reference in New Issue
Block a user