Skip to content

Commit b468954

Browse files
authored
Merge branch 'bmresearch:master' into master
2 parents 2f6d8dc + 690f4c8 commit b468954

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

.github/workflows/dotnet.yml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
with:
1818
script-path: build.cake
1919
target: Report
20+
cake-version: 1.1.0
2021
cake-bootstrap: true
2122
- name: Publish coverage report to coveralls.io
2223
uses: coverallsapp/github-action@v1.1.2

.github/workflows/publish.yml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
with:
2121
script-path: build.cake
2222
target: Pack
23+
cake-version: 1.1.0
2324
cake-bootstrap: true
2425
- name: Publish Solnet.Extensions on version change
2526
uses: bmresearch/publish-nuget@master

src/Solnet.Rpc/IRpcClient.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -715,15 +715,15 @@ RequestResult<List<AccountKeyPair>> GetProgramAccounts(string pubKey, Commitment
715715
/// </summary>
716716
/// <param name="commitment">The state commitment to consider when querying the ledger state.</param>
717717
/// <returns>Returns a task that holds the asynchronous operation result and state.</returns>
718-
[Obsolete("DEPRECATED: Please use GetLatestBlockhashAsync instead. This method is expected to be removed in solana-core v2.0")]
718+
[Obsolete("DEPRECATED: Please use GetLatestBlockHashAsync instead. This method is expected to be removed in solana-core v2.0")]
719719
Task<RequestResult<ResponseValue<BlockHash>>> GetRecentBlockHashAsync(Commitment commitment = Commitment.Finalized);
720720

721721
/// <summary>
722722
/// Gets a recent block hash.
723723
/// </summary>
724724
/// <param name="commitment">The state commitment to consider when querying the ledger state.</param>
725725
/// <returns>Returns an object that wraps the result along with possible errors with the request.</returns>
726-
[Obsolete("DEPRECATED: Please use GetLatestBlockhash instead. This method is expected to be removed in solana-core v2.0")]
726+
[Obsolete("DEPRECATED: Please use GetLatestBlockHash instead. This method is expected to be removed in solana-core v2.0")]
727727
RequestResult<ResponseValue<BlockHash>> GetRecentBlockHash(Commitment commitment = Commitment.Finalized);
728728

729729
/// <summary>

src/Solnet.Rpc/Models/Block.cs

+5
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,11 @@ public class TokenBalanceInfo
264264
/// </summary>
265265
public string Mint { get; set; }
266266

267+
/// <summary>
268+
/// Pubkey of the token owner
269+
/// </summary>
270+
public string Owner { get; set; }
271+
267272
/// <summary>
268273
/// Token balance details.
269274
/// </summary>

0 commit comments

Comments
 (0)