Skip to content

Commit fdcfa3f

Browse files
author
Jenita
committed
feat: added changes to implementutxoWholeResult
Signed-off-by: Jenita <[email protected]>
1 parent 4da0d0a commit fdcfa3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

protocol/localstatequery/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ func (c *Client) GetUTxOWhole() (*UTxOWholeResult, error) {
502502
}
503503
jsonData, err := json.MarshalIndent(result, "", " ")
504504
if err != nil {
505-
return nil, fmt.Errorf("error marshaling UTxOWhole result to JSON: %s", err)
505+
return nil, fmt.Errorf("error marshaling UTxOWhole result to JSON: %w", err)
506506
}
507507
fmt.Println("UTxOWhole Result:")
508508
fmt.Println(string(jsonData))

0 commit comments

Comments
 (0)