From 074ff2f56f4004f22aa1d80825029e3b3769692b Mon Sep 17 00:00:00 2001 From: David Hernando Date: Mon, 13 May 2024 16:51:24 +0200 Subject: [PATCH] CSDK-115 added latest_switch_block_hash property Signed-off-by: David Hernando --- .../JsonRpc/ResultTypes/GetNodeStatusResult.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Casper.Network.SDK/JsonRpc/ResultTypes/GetNodeStatusResult.cs b/Casper.Network.SDK/JsonRpc/ResultTypes/GetNodeStatusResult.cs index 528b70f..1213eab 100644 --- a/Casper.Network.SDK/JsonRpc/ResultTypes/GetNodeStatusResult.cs +++ b/Casper.Network.SDK/JsonRpc/ResultTypes/GetNodeStatusResult.cs @@ -80,5 +80,10 @@ public class GetNodeStatusResult : RpcResult /// The status of the block synchronizer builders. /// [JsonPropertyName("block_sync")] public BlockSynchronizerStatus BlockSync { get; init; } + + /// + /// The hash of the latest switch block. + /// + [JsonPropertyName("latest_switch_block_hash")] public string LatestSwitchBlockHash { get; init; } } }