File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
services/horizon/internal Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1313 os : [ubuntu-22.04]
1414 go : ["1.22", "1.23"]
1515 pg : [12, 16]
16- protocol-version : [22]
16+ protocol-version : [22, 23 ]
1717 runs-on : ${{ matrix.os }}
1818 services :
1919 postgres :
3535 PROTOCOL_22_CORE_DEBIAN_PKG_VERSION : 23.0.0.1-2488.23.0.0rc.1.472e3e69d.focal
3636 PROTOCOL_22_CORE_DOCKER_IMG : stellar/stellar-core:23.0.0.1-2488.23.0.0rc.1.472e3e69d.focal
3737 PROTOCOL_22_STELLAR_RPC_DOCKER_IMG : stellar/stellar-rpc:22.1.2
38+ PROTOCOL_23_CORE_DEBIAN_PKG_VERSION : 23.0.0.1-2488.23.0.0rc.1.472e3e69d.focal
39+ PROTOCOL_23_CORE_DOCKER_IMG : stellar/stellar-core:23.0.0.1-2488.23.0.0rc.1.472e3e69d.focal
40+ PROTOCOL_23_STELLAR_RPC_DOCKER_IMG : stellar/stellar-rpc:23.0.0-rc0-115
3841 PGHOST : localhost
3942 PGPORT : 5432
4043 PGUSER : postgres
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ import (
3131const (
3232 // MaxSupportedProtocolVersion defines the maximum supported version of
3333 // the Stellar protocol.
34- MaxSupportedProtocolVersion uint32 = 22
34+ MaxSupportedProtocolVersion uint32 = 23
3535
3636 // CurrentVersion reflects the latest version of the ingestion
3737 // algorithm. This value is stored in KV store and is used to decide
Original file line number Diff line number Diff line change @@ -37,6 +37,10 @@ type sorobanTransaction struct {
3737}
3838
3939func TestGenerateLedgers (t * testing.T ) {
40+ if integration .GetCoreMaxSupportedProtocol () == 23 {
41+ return
42+ }
43+
4044 var transactionsPerLedger , ledgers , transfersPerTx int
4145 var output bool
4246 var networkPassphrase string
You can’t perform that action at this time.
0 commit comments