Skip to content

Commit

Permalink
Add pegout_transaction_created event
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanieliov committed May 22, 2024
1 parent b1630ca commit 16cc4da
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions abis/bridge.json
Original file line number Diff line number Diff line change
Expand Up @@ -1242,5 +1242,22 @@
],
"name": "pegout_confirmed",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "btcTxHash",
"type": "bytes32"
},
{
"indexed": false,
"name": "utxoOutpointValues",
"type": "bytes"
}
],
"name": "pegout_transaction_created",
"type": "event"
}
]
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, 75);
assert.equal(bridge.abi.length, 76);
});

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

0 comments on commit 16cc4da

Please sign in to comment.