From 89b771650445bd52355095e100d38b55a7888ae0 Mon Sep 17 00:00:00 2001 From: Ilya Koltsov Date: Tue, 24 Oct 2023 10:42:40 +0100 Subject: [PATCH] Fix speculative result block_hash field (CMW-610) --- rpc/response.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/response.go b/rpc/response.go index 394a384..d1a3a8b 100644 --- a/rpc/response.go +++ b/rpc/response.go @@ -180,7 +180,7 @@ type PutDeployResult struct { type SpeculativeExecResult struct { ApiVersion string `json:"api_version"` - DeployHash key.Hash `json:"deploy_hash"` + BlockHash key.Hash `json:"block_hash"` ExecutionResult types.ExecutionResultStatus `json:"execution_result"` }