Skip to content

Commit

Permalink
Fix incorrect endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
cmmarslender committed Nov 26, 2024
1 parent d1d5cea commit 29eb19a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/rpc/wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ type GetWalletTransactionCountResponse struct {

// GetTransactionCount returns the total count of transactions for the specific wallet ID
func (s *WalletService) GetTransactionCount(opts *GetWalletTransactionCountOptions) (*GetWalletTransactionCountResponse, *http.Response, error) {
return Do(s, "get_wallet_transaction_count", opts, &GetWalletTransactionCountResponse{})
return Do(s, "get_transaction_count", opts, &GetWalletTransactionCountResponse{})
}

// GetWalletTransactionsOptions options for get wallet transactions
Expand Down

0 comments on commit 29eb19a

Please sign in to comment.