Skip to content

Commit

Permalink
Fix getVersionInfoResponse json name typo (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
cuongph87 authored Dec 3, 2024
1 parent 84786f9 commit d9c29f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion StellarDotnetSdk.Tests/SorobanServerTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ public async Task TestGetVersionInfoPriorToProtocol22()
"result": {
"version": "21.1.0",
"commit_hash": "fcd2f0523f04279bae4502f3e3fa00ca627e6f6a",
"build_timestamp": "2024-05-10T11:18:38",
"build_time_stamp": "2024-05-10T11:18:38",
"captive_core_version": "stellar-core 21.0.0.rc2 (c6f474133738ae5f6d11b07963ca841909210273)",
"protocol_version": 21
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public GetVersionInfoResponse(
/// <summary>
/// The build timestamp of the RPC server.
/// </summary>
[JsonProperty(PropertyName = "build_timestamp")]
[JsonProperty(PropertyName = "build_time_stamp")]
public string BuildTimeStamp { get; }

/// <summary>
Expand Down

0 comments on commit d9c29f5

Please sign in to comment.