Skip to content

Commit 3335233

Browse files
committed
fix account_set
1 parent faac895 commit 3335233

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extras/jsonrpc/daemon.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ type AccountSettings struct {
159159

160160
func (d *Client) AccountSet(accountID string, settings AccountSettings) (*Account, error) {
161161
response := new(Account)
162-
return response, d.call(response, "account_list", map[string]interface{}{})
162+
return response, d.call(response, "account_set", map[string]interface{}{})
163163
}
164164

165165
func (d *Client) AccountBalance(account *string) (*AccountBalanceResponse, error) {

0 commit comments

Comments
 (0)