From 4e3f29230812f11ee5902ed173582393376d2256 Mon Sep 17 00:00:00 2001 From: Kirill Date: Mon, 11 Nov 2024 12:45:54 +0700 Subject: [PATCH] Support 0.13.3 blocks (#2260) --- blockchain/blockchain.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blockchain/blockchain.go b/blockchain/blockchain.go index 4aa6659b98..7382d73e4e 100644 --- a/blockchain/blockchain.go +++ b/blockchain/blockchain.go @@ -51,7 +51,7 @@ type Reader interface { var ( ErrParentDoesNotMatchHead = errors.New("block's parent hash does not match head block hash") - supportedStarknetVersion = semver.MustParse("0.13.2") + supportedStarknetVersion = semver.MustParse("0.13.3") ) func checkBlockVersion(protocolVersion string) error {