Skip to content

Commit

Permalink
Add a random transaction
Browse files Browse the repository at this point in the history
  • Loading branch information
boyuan-chen committed Nov 1, 2024
1 parent d4417e9 commit 7d8b2b3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/lightbridge.integration.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1837,6 +1837,11 @@ describe('lightbridge', () => {
await res.wait()
await waitForSubgraph()

await wallet1Bnb.sendTransaction({
to: ethers.Wallet.createRandom().address,
value: utils.parseEther('10'),
})

const blockNumber = await providerBnb.getBlockNumber()
const events = await teleportationServiceBnb._getAssetReceivedEventsViaQueryFilter(
L2BNBOnBobaBnb,
Expand Down Expand Up @@ -2072,6 +2077,11 @@ describe('lightbridge', () => {
await res.wait()
await waitForSubgraph()

await wallet1Bnb.sendTransaction({
to: ethers.Wallet.createRandom().address,
value: utils.parseEther('10'),
})

const blockNumber = await providerBnb.getBlockNumber()
const events = await teleportationServiceBnb._getAssetReceivedEventsViaQueryFilter(
L2BNBOnBobaBnb,
Expand Down

0 comments on commit 7d8b2b3

Please sign in to comment.