Skip to content

Commit

Permalink
bitflyer sig encoding fix #394
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed Oct 25, 2017
1 parent 51e6269 commit 9c80622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ccxt.js
Original file line number Diff line number Diff line change
Expand Up @@ -4818,7 +4818,7 @@ var bitflyer = {
headers = {
'ACCESS-KEY': this.apiKey,
'ACCESS-TIMESTAMP': nonce,
'ACCESS-SIGN': this.hmac (this.encode (auth), this.secret),
'ACCESS-SIGN': this.hmac (this.encode (auth), this.encode (this.secret)),
'Content-Type': 'application/json',
};
}
Expand Down

0 comments on commit 9c80622

Please sign in to comment.