patch system test
Some checks failed
Protobuf / lint (pull_request) Failing after 1m30s
Build / build (pull_request) Failing after 1m40s
E2E Tests / test-e2e (pull_request) Failing after 1m45s
Integration Tests / test-integration (pull_request) Failing after 1m52s
Unit Tests / test-unit (pull_request) Failing after 1m8s
SDK Tests / sdk_tests_authority_auctions (pull_request) Failing after 3m10s
SDK Tests / sdk_tests_nameservice_expiry (pull_request) Failing after 3m21s
SDK Tests / sdk_tests (pull_request) Failing after 2m25s

This commit is contained in:
Roy Crihfield 2025-08-19 12:58:55 +08:00
parent 33574a8f89
commit d130608f67
2 changed files with 7 additions and 7 deletions

View File

@ -122,11 +122,11 @@ func (s *auctionSuite) createAuction() string {
"tx", "auction", "create",
sampleCommitTime,
sampleRevealTime,
fmt.Sprintf("10%s", s.bondDenom),
fmt.Sprintf("10%s", s.bondDenom),
"10" + s.bondDenom,
"10" + s.bondDenom,
"--kind", auction.AuctionKindVickrey,
"--minimum-bid", fmt.Sprintf("100%s", s.bondDenom),
"--max-price", fmt.Sprintf("0%s", s.bondDenom),
"--minimum-bid", "100" + s.bondDenom,
"--max-price", "0" + s.bondDenom,
"--num-providers", "0",
}
s.runTx(cmd, false)
@ -140,7 +140,8 @@ func (s *auctionSuite) createAuction() string {
func (s *auctionSuite) createBid(auctionId string) {
cmd := []string{
"tx", "auction", "commit-bid",
auctionId, fmt.Sprintf("200%s", s.bondDenom),
auctionId,
"200" + s.bondDenom,
fmt.Sprintf("--%s=%s", flags.FlagFrom, s.bidderAccount),
}
s.runTx(cmd, false)

View File

@ -2,7 +2,6 @@ package system
import (
"encoding/json"
"fmt"
"testing"
"git.vdb.to/cerc-io/laconicd/x/bond"
@ -59,7 +58,7 @@ func (s *bondSuite) TestTxCreateBond() {
{
"create bond",
[]string{
fmt.Sprintf("10%s", s.bondDenom),
"10" + s.bondDenom,
},
false,
},