Skip to content

Commit

Permalink
fixed a type error
Browse files Browse the repository at this point in the history
  • Loading branch information
calidion committed Dec 18, 2019
1 parent 50dc249 commit 210afff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ dist: xenial
# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/
language: node_js
node_js:
- 8
- 13
- 12
- 11
- 10
- 9
- 8

# https://docs.travis-ci.com/user/languages/javascript-with-nodejs#Node.js-v4-(or-io.js-v3)-compiler-requirements
env:
Expand Down
2 changes: 1 addition & 1 deletion lib/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export declare class Signature {
static check(prefixHash: Buffer, publicKey: Buffer, signature: Buffer): Buffer;
static generateRing(prefixHash: Buffer, image: Buffer, pubsv: Buffer[], pubsCount: number, secretKey: Buffer, secretKeyIndex
: number): Buffer;
static checkRing(prefixHash: Buffer, image: Buffer, pubsv: Buffer[], pubsCount: number, signatures: Buffer): Buffer;
static checkRing(prefixHash: Buffer, image: Buffer, pubsv: Buffer[], pubsCount: number, signatures: Buffer): boolean;
}

export declare class Hash {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vigcoin/neon",
"version": "0.2.11",
"version": "0.2.12",
"description": "",
"main": "lib/index.js",
"author": "calidion <[email protected]>",
Expand Down

0 comments on commit 210afff

Please sign in to comment.