Skip to content

Commit 5e0024b

Browse files
authored
port latest master to protocol-23 (#5724)
* ingest: Rpc as a ledger backend (#5699) * ingest/ledgerbackend: fix rpc ledger backend retries (#5718)
1 parent f7e9089 commit 5e0024b

File tree

7 files changed

+905
-128
lines changed

7 files changed

+905
-128
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
fetch-depth: 0 # required for new-from-rev option in .golangci.yml
2121
- uses: ./.github/actions/setup-go
2222
- name: Run golangci-lint
23-
uses: golangci/golangci-lint-action@58eda26a511c265ee35b3ee4b101fb8adfd76480 # version v6.1.1
23+
uses: golangci/golangci-lint-action@v7
2424
with:
25-
version: v1.64.8 # this is the golangci-lint version
26-
args: --issues-exit-code=0 # exit without errors for now - won't fail the build
25+
version: v2.1.6
26+
args: -v --issues-exit-code=0 --config=.golangci.yml # exit without errors for now - won't fail the build
2727
github-token: ${{ secrets.GITHUB_TOKEN }}
2828
only-new-issues: true
2929
continue-on-error: true

.golangci.yml

Lines changed: 71 additions & 105 deletions
Original file line numberDiff line numberDiff line change
@@ -1,129 +1,95 @@
1-
linters-settings:
2-
depguard:
3-
list-type: denylist
4-
packages:
5-
# logging is allowed only by logutils.Log, logrus
6-
# is allowed to use only in logutils package
7-
- github.com/sirupsen/logrus
8-
packages-with-error-message:
9-
- github.com/sirupsen/logrus: "logging is allowed only by logutils.Log"
10-
dupl:
11-
threshold: 100
12-
funlen:
13-
lines: 100
14-
statements: 50
15-
goconst:
16-
min-len: 2
17-
min-occurrences: 3
18-
gocritic:
19-
enabled-tags:
20-
- diagnostic
21-
- experimental
22-
- opinionated
23-
- performance
24-
- style
25-
disabled-checks:
26-
- dupImport # https://github.com/go-critic/go-critic/issues/845
27-
- ifElseChain
28-
- octalLiteral
29-
- whyNoLint
30-
gocyclo:
31-
min-complexity: 15
32-
goimports:
33-
local-prefixes: github.com/golangci/golangci-lint
34-
gomnd:
35-
# don't include the "operation" and "assign"
36-
checks:
37-
- argument
38-
- case
39-
- condition
40-
- return
41-
ignored-numbers:
42-
- '0'
43-
- '1'
44-
- '2'
45-
- '3'
46-
ignored-functions:
47-
- strings.SplitN
48-
49-
govet:
50-
check-shadowing: true
51-
settings:
52-
printf:
53-
funcs:
54-
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Infof
55-
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Warnf
56-
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Errorf
57-
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Fatalf
58-
lll:
59-
line-length: 140
60-
misspell:
61-
locale: US
62-
nolintlint:
63-
allow-unused: false # report any unused nolint directives
64-
require-explanation: false # don't require an explanation for nolint directives
65-
require-specific: false # don't require nolint directives to be specific about which linter is being skipped
66-
1+
version: "2"
672
linters:
68-
disable-all: true
3+
default: none
694
enable:
705
- bodyclose
716
- depguard
727
- dogsled
738
- dupl
749
- errcheck
75-
- exportloopref
7610
- funlen
7711
- gochecknoinits
7812
- goconst
79-
#- gocritic
8013
- gocyclo
81-
- gofmt
82-
- goimports
83-
- gomnd
8414
- goprintffuncname
8515
- gosec
86-
- gosimple
8716
- govet
8817
- ineffassign
8918
- lll
9019
- misspell
20+
- mnd
9121
- nakedret
9222
- noctx
9323
- nolintlint
9424
- staticcheck
95-
- stylecheck
96-
- typecheck
9725
- unconvert
9826
- unparam
9927
- unused
100-
#- whitespace
101-
102-
# don't enable:
103-
# - asciicheck
104-
# - scopelint
105-
# - gochecknoglobals
106-
# - gocognit
107-
# - godot
108-
# - godox
109-
# - goerr113
110-
# - interfacer
111-
# - maligned
112-
# - nestif
113-
# - prealloc
114-
# - testpackage
115-
# - revive
116-
# - wsl
117-
118-
issues:
119-
# Excluding configuration per-path, per-linter, per-text and per-source
120-
exclude-rules:
121-
- path: _test\.go
122-
linters:
123-
- govet
124-
125-
run:
126-
timeout: 5m
127-
skip-dirs:
128-
- docs
129-
- vendor
28+
settings:
29+
dupl:
30+
threshold: 100
31+
funlen:
32+
lines: 100
33+
statements: 50
34+
goconst:
35+
min-len: 2
36+
min-occurrences: 3
37+
gocritic:
38+
disabled-checks:
39+
- dupImport
40+
- ifElseChain
41+
- octalLiteral
42+
- whyNoLint
43+
enabled-tags:
44+
- diagnostic
45+
- experimental
46+
- opinionated
47+
- performance
48+
- style
49+
gocyclo:
50+
min-complexity: 15
51+
govet:
52+
settings:
53+
printf:
54+
funcs:
55+
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Infof
56+
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Warnf
57+
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Errorf
58+
- (github.com/golangci/golangci-lint/pkg/logutils.Log).Fatalf
59+
lll:
60+
line-length: 140
61+
misspell:
62+
locale: US
63+
nolintlint:
64+
require-explanation: false
65+
require-specific: false
66+
allow-unused: false
67+
exclusions:
68+
generated: lax
69+
presets:
70+
- comments
71+
- common-false-positives
72+
- legacy
73+
- std-error-handling
74+
rules:
75+
- linters:
76+
- govet
77+
path: _test\.go
78+
paths:
79+
- third_party$
80+
- builtin$
81+
- examples$
82+
formatters:
83+
enable:
84+
- gofmt
85+
- goimports
86+
settings:
87+
goimports:
88+
local-prefixes:
89+
- github.com/golangci/golangci-lint
90+
exclusions:
91+
generated: lax
92+
paths:
93+
- third_party$
94+
- builtin$
95+
- examples$

go.mod

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ require (
1212
github.com/Microsoft/go-winio v0.6.1
1313
github.com/adjust/goautoneg v0.0.0-20150426214442-d788f35a0315
1414
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2
15-
github.com/aws/aws-sdk-go v1.45.26
16-
github.com/creachadair/jrpc2 v1.1.0
15+
github.com/aws/aws-sdk-go v1.45.27
1716
github.com/djherbis/fscache v0.10.1
1817
github.com/elazarl/go-bindata-assetfs v1.0.1
1918
github.com/getsentry/raven-go v0.2.0
@@ -58,10 +57,12 @@ require (
5857

5958
require (
6059
github.com/cenkalti/backoff/v4 v4.3.0
60+
github.com/creachadair/jrpc2 v1.2.0
6161
github.com/dgryski/go-farm v0.0.0-20240924180020-3414d57e47da
6262
github.com/docker/docker v27.3.1+incompatible
6363
github.com/docker/go-connections v0.5.0
6464
github.com/fsouza/fake-gcs-server v1.49.2
65+
github.com/stellar/stellar-rpc v0.9.6-0.20250130160539-be7702aa01ba
6566
)
6667

6768
require (
@@ -75,7 +76,7 @@ require (
7576
github.com/certifi/gocertifi v0.0.0-20210507211836-431795d63e8d // indirect
7677
github.com/cespare/xxhash/v2 v2.2.0 // indirect
7778
github.com/containerd/log v0.1.0 // indirect
78-
github.com/creachadair/mds v0.0.1 // indirect
79+
github.com/creachadair/mds v0.13.4 // indirect
7980
github.com/distribution/reference v0.6.0 // indirect
8081
github.com/docker/go-units v0.5.0 // indirect
8182
github.com/felixge/httpsnoop v1.0.4 // indirect
@@ -92,6 +93,7 @@ require (
9293
github.com/gorilla/handlers v1.5.2 // indirect
9394
github.com/gorilla/mux v1.8.1 // indirect
9495
github.com/hashicorp/hcl v1.0.0 // indirect
96+
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
9597
github.com/moby/docker-image-spec v1.3.1 // indirect
9698
github.com/moby/term v0.5.0 // indirect
9799
github.com/morikuni/aec v1.0.0 // indirect
@@ -147,14 +149,13 @@ require (
147149
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
148150
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
149151
github.com/magiconair/properties v1.8.7 // indirect
150-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
151152
github.com/mitchellh/mapstructure v1.5.0 // indirect
152153
github.com/moul/http2curl v0.0.0-20161031194548-4e24498b31db // indirect
153154
github.com/opentracing/opentracing-go v1.1.0 // indirect
154155
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
155-
github.com/prometheus/common v0.44.0 // indirect
156+
github.com/prometheus/common v0.45.0 // indirect
156157
github.com/prometheus/procfs v0.12.0 // indirect
157-
github.com/sergi/go-diff v0.0.0-20161205080420-83532ca1c1ca // indirect
158+
github.com/sergi/go-diff v1.3.1 // indirect
158159
github.com/spf13/cast v1.5.1 // indirect
159160
github.com/stretchr/objx v0.5.2 // indirect
160161
github.com/valyala/bytebufferpool v1.0.0 // indirect

go.sum

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ github.com/araddon/gou v0.0.0-20190110011759-c797efecbb61/go.mod h1:ikc1XA58M+Rx
8282
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 h1:DklsrG3dyBCFEj5IhUbnKptjxatkF07cF2ak3yi77so=
8383
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw=
8484
github.com/aws/aws-sdk-go v1.33.2/go.mod h1:5zCpMtNQVjRREroY7sYe8lOMRSxkhG6MZveU8YkpAk0=
85-
github.com/aws/aws-sdk-go v1.45.26 h1:PJ2NJNY5N/yeobLYe1Y+xLdavBi67ZI8gvph6ftwVCg=
86-
github.com/aws/aws-sdk-go v1.45.26/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8Phjh7fkwI=
85+
github.com/aws/aws-sdk-go v1.45.27 h1:b+zOTPkAG4i2RvqPdHxkJZafmhhVaVHBp4r41Tu4I6U=
86+
github.com/aws/aws-sdk-go v1.45.27/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8Phjh7fkwI=
8787
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
8888
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
8989
github.com/bitly/go-hostpool v0.1.0/go.mod h1:4gOCgp6+NZnVqlKyZ/iBZFTAJKembaVENUpMkpg42fw=
@@ -107,10 +107,10 @@ github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnht
107107
github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I=
108108
github.com/containerd/log v0.1.0/go.mod h1:VRRf09a7mHDIRezVKTRCrOq78v577GXq3bSa3EhrzVo=
109109
github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
110-
github.com/creachadair/jrpc2 v1.1.0 h1:SgpJf0v1rVCZx68+4APv6dgsTFsIHlpgFD1NlQAWA0A=
111-
github.com/creachadair/jrpc2 v1.1.0/go.mod h1:5jN7MKwsm8qvgfTsTzLX3JIfidsAkZ1c8DZSQmp+g38=
112-
github.com/creachadair/mds v0.0.1 h1:2nX6Sww4dXpScx3b6aYjH1n7iuEH715+jj+cKkKw9BY=
113-
github.com/creachadair/mds v0.0.1/go.mod h1:caBACU+n1Q/rZ252FTzfnG0/H+ZUi+UnIQtEOraMv/g=
110+
github.com/creachadair/jrpc2 v1.2.0 h1:SXr0OgnwM0X18P+HccJP0uT3KGSDk/BCSRlJBvE2bMY=
111+
github.com/creachadair/jrpc2 v1.2.0/go.mod h1:66uKSdr6tR5ZeNvkIjDSbbVUtOv0UhjS/vcd8ECP7Iw=
112+
github.com/creachadair/mds v0.13.4 h1:RgU0MhiVqkzp6/xtNWhK6Pw7tDeaVuGFtA0UA2RBYvY=
113+
github.com/creachadair/mds v0.13.4/go.mod h1:4vrFYUzTXMJpMBU+OA292I6IUxKWCCfZkgXg+/kBZMo=
114114
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
115115
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
116116
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
@@ -364,10 +364,10 @@ github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovk
364364
github.com/mattn/go-isatty v0.0.17 h1:BTarxUcIeDqL27Mc+vyvdWYSL28zpIhv3RoTdsLMPng=
365365
github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
366366
github.com/mattn/go-sqlite3 v1.14.6/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU=
367-
github.com/mattn/go-sqlite3 v1.14.15 h1:vfoHhTN1af61xCRSWzFIWzx2YskyMTwHLrExkBOjvxI=
368-
github.com/mattn/go-sqlite3 v1.14.15/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg=
369-
github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo=
370-
github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4=
367+
github.com/mattn/go-sqlite3 v1.14.17 h1:mCRHCLDUBXgpKAqIKsaAaAsrAlbkeomtRFKXh2L6YIM=
368+
github.com/mattn/go-sqlite3 v1.14.17/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg=
369+
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 h1:jWpvCLoY8Z/e3VKvlsiIGKtc+UG6U5vzxaoagmhXfyg=
370+
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0/go.mod h1:QUyp042oQthUoa9bqDv0ER0wrtXnBruoNd7aNjkbP+k=
371371
github.com/minio/md5-simd v1.1.2 h1:Gdi1DZK69+ZVMoNHRXJyNcxrMA4dSxoYHZSQbirFg34=
372372
github.com/minio/md5-simd v1.1.2/go.mod h1:MzdKDxYpY2BT9XQFocsiZf/NKVtR7nkE4RoEpN+20RM=
373373
github.com/minio/minio-go/v7 v7.0.71 h1:No9XfOKTYi6i0GnBj+WZwD8WP5GZfL7n7GOjRqCdAjA=
@@ -424,8 +424,8 @@ github.com/prometheus/client_golang v1.17.0/go.mod h1:VeL+gMmOAxkS2IqfCq0ZmHSL+L
424424
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
425425
github.com/prometheus/client_model v0.5.0 h1:VQw1hfvPvk3Uv6Qf29VrPF32JB6rtbgI6cYPYQjL0Qw=
426426
github.com/prometheus/client_model v0.5.0/go.mod h1:dTiFglRmd66nLR9Pv9f0mZi7B7fk5Pm3gvsjB5tr+kI=
427-
github.com/prometheus/common v0.44.0 h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdOOfY=
428-
github.com/prometheus/common v0.44.0/go.mod h1:ofAIvZbQ1e/nugmZGz4/qCb9Ap1VoSTIO7x0VV9VvuY=
427+
github.com/prometheus/common v0.45.0 h1:2BGz0eBc2hdMDLnO/8n0jeB3oPrt2D08CekT0lneoxM=
428+
github.com/prometheus/common v0.45.0/go.mod h1:YJmSTw9BoKxJplESWWxlbyttQR4uaEcGyv9MZjVOJsY=
429429
github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo=
430430
github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo=
431431
github.com/rcrowley/go-metrics v0.0.0-20190826022208-cac0b30c2563/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4=
@@ -447,8 +447,8 @@ github.com/sagikazarmark/slog-shim v0.1.0 h1:diDBnUNK9N/354PgrxMywXnAwEr1QZcOr6g
447447
github.com/sagikazarmark/slog-shim v0.1.0/go.mod h1:SrcSrq8aKtyuqEI1uvTDTK1arOWRIczQRv+GVI1AkeQ=
448448
github.com/segmentio/go-loggly v0.5.1-0.20171222203950-eb91657e62b2 h1:S4OC0+OBKz6mJnzuHioeEat74PuQ4Sgvbf8eus695sc=
449449
github.com/segmentio/go-loggly v0.5.1-0.20171222203950-eb91657e62b2/go.mod h1:8zLRYR5npGjaOXgPSKat5+oOh+UHd8OdbS18iqX9F6Y=
450-
github.com/sergi/go-diff v0.0.0-20161205080420-83532ca1c1ca h1:oR/RycYTFTVXzND5r4FdsvbnBn0HJXSVeNAnwaTXRwk=
451-
github.com/sergi/go-diff v0.0.0-20161205080420-83532ca1c1ca/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo=
450+
github.com/sergi/go-diff v1.3.1 h1:xkr+Oxo4BOQKmkn/B9eMK0g5Kg/983T9DqqPHwYqD+8=
451+
github.com/sergi/go-diff v1.3.1/go.mod h1:aMJSSKb2lpPvRNec0+w3fl7LP9IOFzdc9Pa4NFbPK1I=
452452
github.com/shurcooL/httpfs v0.0.0-20230704072500-f1e31cf0ba5c h1:aqg5Vm5dwtvL+YgDpBcK1ITf3o96N/K7/wsRXQnUTEs=
453453
github.com/shurcooL/httpfs v0.0.0-20230704072500-f1e31cf0ba5c/go.mod h1:owqhoLW1qZoYLZzLnBw+QkPP9WZnjlSWihhxAJC1+/M=
454454
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=
@@ -471,6 +471,8 @@ github.com/spf13/viper v1.17.0 h1:I5txKw7MJasPL/BrfkbA0Jyo/oELqVmux4pR/UxOMfI=
471471
github.com/spf13/viper v1.17.0/go.mod h1:BmMMMLQXSbcHK6KAOiFLz0l5JHrU89OdIRHvsk0+yVI=
472472
github.com/stellar/go-xdr v0.0.0-20231122183749-b53fb00bcac2 h1:OzCVd0SV5qE3ZcDeSFCmOWLZfEWZ3Oe8KtmSOYKEVWE=
473473
github.com/stellar/go-xdr v0.0.0-20231122183749-b53fb00bcac2/go.mod h1:yoxyU/M8nl9LKeWIoBrbDPQ7Cy+4jxRcWcOayZ4BMps=
474+
github.com/stellar/stellar-rpc v0.9.6-0.20250130160539-be7702aa01ba h1:fCKETMnEBI2CDo2cUDoZsJUpTnpK5H2aDFoCfozyzIM=
475+
github.com/stellar/stellar-rpc v0.9.6-0.20250130160539-be7702aa01ba/go.mod h1:V5NPV4kvf2VGU8iRm8l6cAP3kWA/9B2NGKRkrbKBmpA=
474476
github.com/stellar/throttled v2.2.3-0.20190823235211-89d75816f59d+incompatible h1:jMXXAcz6xTarGDQ4VtVbtERogcmDQw4RaE85Cr9CgoQ=
475477
github.com/stellar/throttled v2.2.3-0.20190823235211-89d75816f59d+incompatible/go.mod h1:7CJ23pXirXBJq45DqvO6clzTEGM/l1SfKrgrzLry8b4=
476478
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=

ingest/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ In Protocol 23, Stellar Core removes in-memory mode and requires on-disk mode (u
1818
### New Features
1919
* Create new package `ingest/cdp` for new components which will assist towards writing data transformation pipelines as part of [Composable Data Platform](https://stellar.org/blog/developers/composable-data-platform).
2020
* Add new functional producer, `cdp.ApplyLedgerMetadata`. A new function which enables a private instance of `BufferedStorageBackend` to perfrom the role of a producer operator in streaming pipeline designs. It will emit pre-computed `LedgerCloseMeta` from a chosen `DataStore`. The stream can use `ApplyLedgerMetadata` as the origin of `LedgerCloseMeta`, providing a callback function which acts as the next operator in the stream, receiving the `LedgerCloseMeta`. [5462](https://github.com/stellar/go/pull/5462).
21+
* Add new RPCLedgerBackend. [5571](https://github.com/stellar/go/issues/5571) - `ledgerbackend.RPCLedgerBackend` implements the stadard `ledgerbackend.LedgerBackend` interface. Provide the URL of the RPC server as configuration and this new ledger backend will proxy to the RPC to retrieve ledger metadata.
2122

2223
### Stellar Core Protocol 21 Configuration Update:
2324
* BucketlistDB is now the default database for stellar-core, replacing the experimental option. As a result, the `EXPERIMENTAL_BUCKETLIST_DB` configuration parameter has been deprecated.

0 commit comments

Comments
 (0)