Skip to content

Commit a7fe070

Browse files
Fix JSON property name for FilterByHeight
1 parent c0bec45 commit a7fe070

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Monero/Wallet/Rpc/GetTransfersRequest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ public class GetTransfersRequest
99
[JsonPropertyName("pending")] public bool Pending { get; set; }
1010
[JsonPropertyName("failed")] public bool Failed { get; set; }
1111
[JsonPropertyName("pool")] public bool Pool { get; set; }
12-
[JsonPropertyName("filter_by_height ")] public bool? FilterByHeight { get; set; }
12+
[JsonPropertyName("filter_by_height")] public bool? FilterByHeight { get; set; }
1313
[JsonPropertyName("min_height")] public uint? MinHeight { get; set; }
1414
[JsonPropertyName("max_height")] public uint? MaxHeight { get; set; }
1515
[JsonPropertyName("account_index")] public long? AccountIndex { get; set; }
1616
[JsonPropertyName("subaddr_indices")] public IEnumerable<long>? SubaddrIndices { get; set; }
1717
[JsonPropertyName("all_accounts")] public bool? AllAccounts { get; set; }
18-
}
18+
}

0 commit comments

Comments
 (0)