Skip to content

Commit

Permalink
Merge pull request #12 from jplomas/master
Browse files Browse the repository at this point in the history
Add support for QRL node v2.1.2
  • Loading branch information
jplomas committed Aug 19, 2021
2 parents 8113d9b + 3bf162f commit 9280154
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 10 deletions.
17 changes: 13 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,21 @@ exports.QRLPROTO_SHA256 = [
objectSha256: "2899c2d79b287e75b9ecc3aaa2fd63ec3ebd5455b7e0883528ef5425121c6a27",
objectHash: "0593e90215d11234f53667326df2624b7bc17e462a952063291c4ba15d54c1d7",
},
{
version: '2.0.7 python',
protoSha256: '0d70a3372c4668a1bf4fd42983ae01f2e0fb54b4030b808bbea78e5adadb23f0',
{
version: "2.0.7 python",
protoSha256: "0d70a3372c4668a1bf4fd42983ae01f2e0fb54b4030b808bbea78e5adadb23f0",
protoHash: "cbabe9884349f1894a24f6145b3a48565d66fedd2c35e1a68ff925daf37f3861",
objectSha256: '2899c2d79b287e75b9ecc3aaa2fd63ec3ebd5455b7e0883528ef5425121c6a27',
objectSha256: "2899c2d79b287e75b9ecc3aaa2fd63ec3ebd5455b7e0883528ef5425121c6a27",
objectHash: "0ec02dc141c5810d4cf58af93f5e1dd7f3ea036a1053afbed3706a470d20a76a",
cliProto: "4ea5c508a6566e76240543f8feb06fd457777be39549c4016436afda65d2330e",
},
{
version: "2.1.2 python",
protoSha256: "0d70a3372c4668a1bf4fd42983ae01f2e0fb54b4030b808bbea78e5adadb23f0",
protoHash: "cbabe9884349f1894a24f6145b3a48565d66fedd2c35e1a68ff925daf37f3861",
objectSha256: "2899c2d79b287e75b9ecc3aaa2fd63ec3ebd5455b7e0883528ef5425121c6a27",
objectHash: "0ec02dc141c5810d4cf58af93f5e1dd7f3ea036a1053afbed3706a470d20a76a",
cliProto: "4ea5c508a6566e76240543f8feb06fd457777be39549c4016436afda65d2330e",
},
// development .proto
{
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theqrl/qrl-proto-sha256",
"version": "3.2.1",
"version": "3.4.0",
"description": "SHA256 checksums for QRL node .proto files",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var assert = require('assert');
var QRLP = require('./index.js').QRLPROTO_SHA256;

var CURRENT_PROTOS = 30;
var CURRENT_PROTOS = 31;

describe('QRLPROTO_SHA256', function() {
describe('-> length', function() {
Expand Down

0 comments on commit 9280154

Please sign in to comment.