Skip to content

Commit

Permalink
feat(abis): add getStateForSvpClient Bridge function
Browse files Browse the repository at this point in the history
  • Loading branch information
apancorb committed Sep 25, 2024
1 parent c9cddf4 commit 5ee9a07
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions abis/bridge.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@
}
]
},
{
"name": "getStateForSvpClient",
"type": "function",
"constant": "true",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bytes"
}
]
},
{
"name": "getStateForDebugging",
"type": "function",
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, 76);
assert.equal(bridge.abi.length, 77);
});

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

0 comments on commit 5ee9a07

Please sign in to comment.