Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Barnard latest mx-chain-go #98

Open
wants to merge 2 commits into
base: rc/barnard
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.20
require (
github.com/gin-gonic/gin v1.9.1
github.com/multiversx/mx-chain-core-go v1.2.23
github.com/multiversx/mx-chain-go v1.8.5-0.20241115221906-c22ee81cece5
github.com/multiversx/mx-chain-go v1.8.5-0.20241203121715-af84826c646a
github.com/multiversx/mx-chain-logger-go v1.0.15
github.com/multiversx/mx-chain-proxy-go v1.1.54
github.com/pelletier/go-toml v1.9.3
Expand Down Expand Up @@ -118,7 +118,7 @@ require (
github.com/multiversx/concurrent-map v0.1.4 // indirect
github.com/multiversx/mx-chain-communication-go v1.1.1 // indirect
github.com/multiversx/mx-chain-crypto-go v1.2.12 // indirect
github.com/multiversx/mx-chain-es-indexer-go v1.7.10 // indirect
github.com/multiversx/mx-chain-es-indexer-go v1.7.12-0.20241203121521-6d04b89140e8 // indirect
github.com/multiversx/mx-chain-scenario-go v1.4.4 // indirect
github.com/multiversx/mx-chain-storage-go v1.0.16 // indirect
github.com/multiversx/mx-chain-vm-common-go v1.5.16 // indirect
Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -399,10 +399,10 @@ github.com/multiversx/mx-chain-core-go v1.2.23 h1:8WlCGqJHR2HQ0vN4feJwb7W4VrCwBG
github.com/multiversx/mx-chain-core-go v1.2.23/go.mod h1:B5zU4MFyJezmEzCsAHE9YNULmGCm2zbPHvl9hazNxmE=
github.com/multiversx/mx-chain-crypto-go v1.2.12 h1:zWip7rpUS4CGthJxfKn5MZfMfYPjVjIiCID6uX5BSOk=
github.com/multiversx/mx-chain-crypto-go v1.2.12/go.mod h1:HzcPpCm1zanNct/6h2rIh+MFrlXbjA5C8+uMyXj3LI4=
github.com/multiversx/mx-chain-es-indexer-go v1.7.10 h1:Umi7WN8h4BOXLw7CM3VgvaWkLGef7nXtaPIGbjBCT3U=
github.com/multiversx/mx-chain-es-indexer-go v1.7.10/go.mod h1:oGcRK2E3Syv6vRTszWrrb/TqD8akq0yeoMr1wPPiTO4=
github.com/multiversx/mx-chain-go v1.8.5-0.20241115221906-c22ee81cece5 h1:G2yv0HYFCWuyMCXrsJ1QgexAJApfofXugu3ZCHmSF1k=
github.com/multiversx/mx-chain-go v1.8.5-0.20241115221906-c22ee81cece5/go.mod h1:K17YgUxKX/EpOaswepIrWqVSyNNhUe+LADDuZT6mvsU=
github.com/multiversx/mx-chain-es-indexer-go v1.7.12-0.20241203121521-6d04b89140e8 h1:VDVtjUjmSVqavCWsOwqjwHUemkKPopQTpdtW+73ay40=
github.com/multiversx/mx-chain-es-indexer-go v1.7.12-0.20241203121521-6d04b89140e8/go.mod h1:oGcRK2E3Syv6vRTszWrrb/TqD8akq0yeoMr1wPPiTO4=
github.com/multiversx/mx-chain-go v1.8.5-0.20241203121715-af84826c646a h1:tw6FG7Imbb0t06DsQ26xQjuW6rRL5UmLQE363zaxIS4=
github.com/multiversx/mx-chain-go v1.8.5-0.20241203121715-af84826c646a/go.mod h1:4n6qEFouLjYQPuAbmvGwHwjHYJ8sT+R2NYtQzqUMmKw=
github.com/multiversx/mx-chain-logger-go v1.0.15 h1:HlNdK8etyJyL9NQ+6mIXyKPEBo+wRqOwi3n+m2QIHXc=
github.com/multiversx/mx-chain-logger-go v1.0.15/go.mod h1:t3PRKaWB1M+i6gUfD27KXgzLJJC+mAQiN+FLlL1yoGQ=
github.com/multiversx/mx-chain-proxy-go v1.1.54 h1:o6rcZVpE+Qkf+CyNIZRvfRHAZGO7HcloITglSXRH7n8=
Expand Down
1 change: 1 addition & 0 deletions pkg/proxy/configs/configs.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ func CreateProxyConfigs(args ArgsProxyConfigs) (*ArgsOutputConfig, error) {
return nil, err
}

cfg.GeneralSettings.AllowEntireTxPoolFetch = true
cfg.GeneralSettings.ServerPort = args.ServerPort
cfg.Observers = make([]*data.NodeData, 0, len(args.RestApiInterfaces))
for shardID, nodeAPIInterface := range args.RestApiInterfaces {
Expand Down
Loading