From e9188cd8c53765852f1e6ff39cda3cf8de656a89 Mon Sep 17 00:00:00 2001 From: Willem Wyndham Date: Thu, 14 Sep 2023 12:10:37 -0400 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Alfonso Acosta --- cmd/soroban-rpc/internal/test/cli_test.go | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/cmd/soroban-rpc/internal/test/cli_test.go b/cmd/soroban-rpc/internal/test/cli_test.go index 7f96010cc..1d5beba60 100644 --- a/cmd/soroban-rpc/internal/test/cli_test.go +++ b/cmd/soroban-rpc/internal/test/cli_test.go @@ -109,15 +109,9 @@ func getAccountFromID(t *testing.T, id uint32) string { return strings.Trim(runSuccessfulCLICmd(t, fmt.Sprintf("config identity address --hd-path %d", id)), "\n") } -// func getTestContractIDFromAccountAndSalt(t *testing.T, id uint32) [32]byte { -// return getContractID(t, getAccountFromID(t, id), testSalt, StandaloneNetworkPassphrase) -// } - -const MILLION string = "1000000" - func NewCLITest(t *testing.T) *Test { test := NewTest(t) - fundAccount(t, test, getAccountFromID(t, 0), MILLION) + fundAccount(t, test, getAccountFromID(t, 0), "1000000") return test }