Skip to content

Commit a966e41

Browse files
committed
- Add missing extra line
- Removed unused import - Set version to 2.0.0
1 parent a2167e1 commit a966e41

File tree

5 files changed

+28
-29
lines changed

5 files changed

+28
-29
lines changed

package-lock.json

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@rsksmart/bridge-transaction-parser",
3-
"version": "1.2.1",
4-
"description": "A tool to find interactions with the Bridge on Rootstock",
3+
"version": "2.0.0",
4+
"description": "A tool to find and decode transactions to the Rootstock Bridge",
55
"main": "index.js",
66
"scripts": {
77
"test": "nyc mocha --timeout 10000"
@@ -21,13 +21,13 @@
2121
"author": "",
2222
"license": "MIT",
2323
"keywords": [
24-
"rootstock",
25-
"rsk",
26-
"etherjs",
27-
"blockchain",
24+
"rootstock",
25+
"rsk",
26+
"etherjs",
27+
"blockchain",
2828
"bridge",
2929
"powpeg"
30-
],
30+
],
3131
"devDependencies": {
3232
"chai": "^4.3.4",
3333
"chai-as-promised": "^7.1.1",

test/blockchain-stubs.util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,4 +232,4 @@ module.exports = {
232232
transactionsStub,
233233
blocksStub,
234234
dataDecodedResults
235-
}
235+
}

test/ethers-js-stub.util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,4 +148,4 @@ module.exports = {
148148
ethersStub,
149149
ContractStub,
150150
InterfaceStub
151-
};
151+
};

test/index.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
const chai = require('chai')
22
const chaiAsPromised = require('chai-as-promised');
3-
const Bridge = require('@rsksmart/rsk-precompiled-abis').bridge;
43
const BridgeTransactionParser = require('../index');
54
const {txReceiptsStub, blocksStub} = require("./blockchain-stubs.util");
65
const { rskClient } = require("./ethers-js-stub.util");

0 commit comments

Comments
 (0)