Skip to content

Commit

Permalink
HTTP: use acons instead of append
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatack committed Aug 31, 2019
1 parent 344e8cf commit 2cdad8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/http.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
(let* ((path (concatenate 'string +api-private-path+ method))
(uri (make-uri :scheme scheme :host host :path path))
(nonce (generate-kraken-nonce))
(data (append params `(("nonce" . ,nonce))))
(data (acons "nonce" nonce params))
(headers (post-http-headers path nonce data key secret)))
(post uri :headers headers :content data :verbose verbose)))

Expand Down

0 comments on commit 2cdad8e

Please sign in to comment.