Skip to content

Commit 1a6bcc6

Browse files
authored
Merge pull request #124 from multiversx/update_mx_chain_go
updated mx-chain-go
2 parents 6dc90ba + ccd7340 commit 1a6bcc6

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ run-examples:
2424

2525
$(MAKE) docker-build
2626
docker run -d --name "${IMAGE_NAME}" -p 8085:8085 ${CHAIN_SIMULATOR_IMAGE_NAME}:${CHAIN_SIMULATOR_IMAGE_TAG}
27-
cd scripts/run-examples && /bin/bash script.sh
27+
cd scripts/run-examples && /bin/bash install-python-deps.sh && /bin/bash script.sh
2828
docker stop "${IMAGE_NAME}"
2929
docker rm ${IMAGE_NAME}
3030

examples/contracts/issue-esdt-with-contract/issue-with-contract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def main():
8787

8888
time.sleep(0.5)
8989

90-
provider.do_post_generic(f"{GENERATE_BLOCKS_URL}/3", {})
90+
provider.do_post_generic(f"{GENERATE_BLOCKS_URL}/1", {})
9191

9292
status = provider.get_transaction_status(tx_hash)
9393
if status.status != "pending":

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ go 1.20
55
require (
66
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792
77
github.com/gin-gonic/gin v1.10.0
8-
github.com/multiversx/mx-chain-core-go v1.2.24
9-
github.com/multiversx/mx-chain-go v1.8.11
8+
github.com/multiversx/mx-chain-core-go v1.2.25-0.20250312113427-a70d8ff2b073
9+
github.com/multiversx/mx-chain-go v1.8.13-0.20250324163410-2fec7b3e3d11
1010
github.com/multiversx/mx-chain-logger-go v1.0.15
1111
github.com/multiversx/mx-chain-proxy-go v1.1.57
1212
github.com/pelletier/go-toml v1.9.3
@@ -119,9 +119,9 @@ require (
119119
github.com/multiformats/go-multistream v0.4.1 // indirect
120120
github.com/multiformats/go-varint v0.0.7 // indirect
121121
github.com/multiversx/concurrent-map v0.1.4 // indirect
122-
github.com/multiversx/mx-chain-communication-go v1.1.1 // indirect
122+
github.com/multiversx/mx-chain-communication-go v1.1.2-0.20250307100720-d2d999fc12af // indirect
123123
github.com/multiversx/mx-chain-crypto-go v1.2.12 // indirect
124-
github.com/multiversx/mx-chain-es-indexer-go v1.7.16 // indirect
124+
github.com/multiversx/mx-chain-es-indexer-go v1.7.17-0.20250311085008-58675dd2ea38 // indirect
125125
github.com/multiversx/mx-chain-scenario-go v1.4.4 // indirect
126126
github.com/multiversx/mx-chain-storage-go v1.0.19 // indirect
127127
github.com/multiversx/mx-chain-vm-common-go v1.5.16 // indirect

go.sum

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -398,16 +398,16 @@ github.com/multiformats/go-varint v0.0.7 h1:sWSGR+f/eu5ABZA2ZpYKBILXTTs9JWpdEM/n
398398
github.com/multiformats/go-varint v0.0.7/go.mod h1:r8PUYw/fD/SjBCiKOoDlGF6QawOELpZAu9eioSos/OU=
399399
github.com/multiversx/concurrent-map v0.1.4 h1:hdnbM8VE4b0KYJaGY5yJS2aNIW9TFFsUYwbO0993uPI=
400400
github.com/multiversx/concurrent-map v0.1.4/go.mod h1:8cWFRJDOrWHOTNSqgYCUvwT7c7eFQ4U2vKMOp4A/9+o=
401-
github.com/multiversx/mx-chain-communication-go v1.1.1 h1:y4DoQeQOJTaSUsRzczQFazf8JYQmInddypApqA3AkwM=
402-
github.com/multiversx/mx-chain-communication-go v1.1.1/go.mod h1:WK6bP4pGEHGDDna/AYRIMtl6G9OA0NByI1Lw8PmOnRM=
403-
github.com/multiversx/mx-chain-core-go v1.2.24 h1:O0X7N9GfNVUCE9fukXA+dvfCRRjViYn88zOaE7feUog=
404-
github.com/multiversx/mx-chain-core-go v1.2.24/go.mod h1:B5zU4MFyJezmEzCsAHE9YNULmGCm2zbPHvl9hazNxmE=
401+
github.com/multiversx/mx-chain-communication-go v1.1.2-0.20250307100720-d2d999fc12af h1:7JoTWjlYtJuid/ndLIDBrEOTkpdII64cm7xuUtHFotA=
402+
github.com/multiversx/mx-chain-communication-go v1.1.2-0.20250307100720-d2d999fc12af/go.mod h1:WK6bP4pGEHGDDna/AYRIMtl6G9OA0NByI1Lw8PmOnRM=
403+
github.com/multiversx/mx-chain-core-go v1.2.25-0.20250312113427-a70d8ff2b073 h1:z871RMgkQVc7/RR5EZ/sEEKygOFVwUQrozvgmuz9U6o=
404+
github.com/multiversx/mx-chain-core-go v1.2.25-0.20250312113427-a70d8ff2b073/go.mod h1:B5zU4MFyJezmEzCsAHE9YNULmGCm2zbPHvl9hazNxmE=
405405
github.com/multiversx/mx-chain-crypto-go v1.2.12 h1:zWip7rpUS4CGthJxfKn5MZfMfYPjVjIiCID6uX5BSOk=
406406
github.com/multiversx/mx-chain-crypto-go v1.2.12/go.mod h1:HzcPpCm1zanNct/6h2rIh+MFrlXbjA5C8+uMyXj3LI4=
407-
github.com/multiversx/mx-chain-es-indexer-go v1.7.16 h1:FTmJFp62Y2PDi5s3Apz0xO01eYvsiXXHTZXuMU7QoJc=
408-
github.com/multiversx/mx-chain-es-indexer-go v1.7.16/go.mod h1:E7M0CGDEHU1E0mVcbYHY3haF+rQjtBG6v36drjxVqqA=
409-
github.com/multiversx/mx-chain-go v1.8.11 h1:veb6gMxkRqe+XCpK2n0p27/5Qpzo3KtMbam59SCX7LQ=
410-
github.com/multiversx/mx-chain-go v1.8.11/go.mod h1:bmsBlNR/+jA8kLPScFv2S9HQL6yCEw+qMoExY9SICaA=
407+
github.com/multiversx/mx-chain-es-indexer-go v1.7.17-0.20250311085008-58675dd2ea38 h1:sglIVcRAuxQhPEL0f0vtbPPio1i9aksNdH3C19VH0cc=
408+
github.com/multiversx/mx-chain-es-indexer-go v1.7.17-0.20250311085008-58675dd2ea38/go.mod h1:IwFRBYbbri/C3epb+e0YmE3umXnZhewD3pwvNQM85fw=
409+
github.com/multiversx/mx-chain-go v1.8.13-0.20250324163410-2fec7b3e3d11 h1:0FOV7ePl15vliJQtE5kxq+78TTwz0EkJVSbkabMYhsQ=
410+
github.com/multiversx/mx-chain-go v1.8.13-0.20250324163410-2fec7b3e3d11/go.mod h1:JxIX+ePDemmT3rXIM8SQDSYMMNqa7ffmsl7KTaH9Wdc=
411411
github.com/multiversx/mx-chain-logger-go v1.0.15 h1:HlNdK8etyJyL9NQ+6mIXyKPEBo+wRqOwi3n+m2QIHXc=
412412
github.com/multiversx/mx-chain-logger-go v1.0.15/go.mod h1:t3PRKaWB1M+i6gUfD27KXgzLJJC+mAQiN+FLlL1yoGQ=
413413
github.com/multiversx/mx-chain-proxy-go v1.1.57 h1:lFfdBZdzKz4WD1VzdGV6DqIk3Dqk1rEBNXd+76gJJ5E=

0 commit comments

Comments
 (0)