Skip to content

Commit

Permalink
Merge pull request #43 from rsksmart/add-releaseBtc-method
Browse files Browse the repository at this point in the history
Adds releaseBtc method
  • Loading branch information
josedahlquist authored Jun 6, 2022
2 parents 9b183da + 01d077b commit c73968c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions abis/bridge.json
Original file line number Diff line number Diff line change
Expand Up @@ -953,6 +953,13 @@
}
]
},
{
"name": "releaseBtc",
"type": "function",
"constant": true,
"inputs": [],
"outputs": []
},
{
"anonymous": false,
"inputs": [
Expand Down
4 changes: 2 additions & 2 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": "@rsksmart/rsk-precompiled-abis",
"version": "5.0.0-HOP",
"version": "5.0.1-HOP",
"description": "Utility to interact with RSK native contracts",
"main": "index.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion tests/bridge.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ describe('Bridge', () => {
});

it('has all the expected signatures', () => {
assert.equal(bridge.abi.length, 66);
assert.equal(bridge.abi.length, 73);
});

it('builds a valid contract', () => {
Expand Down

0 comments on commit c73968c

Please sign in to comment.