Skip to content

Commit

Permalink
todo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
akos-tk committed Sep 16, 2024
1 parent a66b5cd commit 7976417
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion liteapi/account.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

// GetAccountWithProof
// For safe operation, always use GetAccountWithProof with WithBlock(proofedBlock ton.BlockIDExt), as the proof of masterchain cashed blocks is not implemented yet!
func (c *Client) GetAccountWithProof(ctx context.Context, accountID ton.AccountID) (*tlb.ShardAccount, *tlb.ShardStateUnsplit, error) { // TODO: return merged tlb.ShardStateUnsplit (proof+account)
func (c *Client) GetAccountWithProof(ctx context.Context, accountID ton.AccountID) (*tlb.ShardAccount, *tlb.ShardStateUnsplit, error) {
res, err := c.GetAccountStateRaw(ctx, accountID) // TODO: add proof check for masterHead
if err != nil {
return nil, nil, err
Expand Down

0 comments on commit 7976417

Please sign in to comment.