From c463ba040a1f5432a1131a60d340f64f49b97d94 Mon Sep 17 00:00:00 2001 From: Alfonso Acosta Date: Tue, 29 Aug 2023 11:53:36 +0200 Subject: [PATCH] Add TESTING_SOROBAN_HIGH_LIMIT_OVERRIDE to core and captive-core config files --- .../internal/test/captive-core-integration-tests.cfg | 1 + .../internal/test/stellar-core-integration-tests.cfg | 1 + go.mod | 2 +- go.sum | 2 ++ 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/cmd/soroban-rpc/internal/test/captive-core-integration-tests.cfg b/cmd/soroban-rpc/internal/test/captive-core-integration-tests.cfg index 01b41a2ec2..45b9a8e61c 100644 --- a/cmd/soroban-rpc/internal/test/captive-core-integration-tests.cfg +++ b/cmd/soroban-rpc/internal/test/captive-core-integration-tests.cfg @@ -8,6 +8,7 @@ ENABLE_SOROBAN_DIAGNOSTIC_EVENTS=true # Lower the expiration of persistent ledger entries # so that ledger expiration/restoring becomes testeable TESTING_MINIMUM_PERSISTENT_ENTRY_LIFETIME=10 +TESTING_SOROBAN_HIGH_LIMIT_OVERRIDE=true [[VALIDATORS]] NAME="local_core" diff --git a/cmd/soroban-rpc/internal/test/stellar-core-integration-tests.cfg b/cmd/soroban-rpc/internal/test/stellar-core-integration-tests.cfg index 4b4d0787da..d41ccb0214 100644 --- a/cmd/soroban-rpc/internal/test/stellar-core-integration-tests.cfg +++ b/cmd/soroban-rpc/internal/test/stellar-core-integration-tests.cfg @@ -18,6 +18,7 @@ ENABLE_SOROBAN_DIAGNOSTIC_EVENTS=true # Lower the expiration of persistent ledger entries # so that ledger expiration/restoring becomes testeable TESTING_MINIMUM_PERSISTENT_ENTRY_LIFETIME=10 +TESTING_SOROBAN_HIGH_LIMIT_OVERRIDE=true [QUORUM_SET] THRESHOLD_PERCENT=100 diff --git a/go.mod b/go.mod index eeebc663b3..4012ee58fd 100644 --- a/go.mod +++ b/go.mod @@ -15,7 +15,7 @@ require ( github.com/sirupsen/logrus v1.9.3 github.com/spf13/cobra v1.7.0 github.com/spf13/pflag v1.0.5 - github.com/stellar/go v0.0.0-20230825090709-76e07a4dbd21 + github.com/stellar/go v0.0.0-20230829095205-a541e69acb5f github.com/stretchr/testify v1.8.4 golang.org/x/mod v0.12.0 ) diff --git a/go.sum b/go.sum index 5d06804be5..34e369b28c 100644 --- a/go.sum +++ b/go.sum @@ -188,6 +188,8 @@ github.com/spf13/viper v1.3.2 h1:VUFqw5KcqRf7i70GOzW7N+Q7+gxVBkSSqiXB12+JQ4M= github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= github.com/stellar/go v0.0.0-20230825090709-76e07a4dbd21 h1:OqDQXwl/IvYX4WNJJSQXxbArjjeCcoHgfnaZPndbc58= github.com/stellar/go v0.0.0-20230825090709-76e07a4dbd21/go.mod h1:5/qoLl0pexA5OPi0BZvDsOc3532CJlHuRg1dnBxbsGg= +github.com/stellar/go v0.0.0-20230829095205-a541e69acb5f h1:bNIzaQjSYAOAkbAK9g2zY4dykWEltK5LCuEe4uEoygc= +github.com/stellar/go v0.0.0-20230829095205-a541e69acb5f/go.mod h1:5/qoLl0pexA5OPi0BZvDsOc3532CJlHuRg1dnBxbsGg= github.com/stellar/go-xdr v0.0.0-20211103144802-8017fc4bdfee h1:fbVs0xmXpBvVS4GBeiRmAE3Le70ofAqFMch1GTiq/e8= github.com/stellar/go-xdr v0.0.0-20211103144802-8017fc4bdfee/go.mod h1:yoxyU/M8nl9LKeWIoBrbDPQ7Cy+4jxRcWcOayZ4BMps= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=