Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare And Publish Package! v1.1.16 #13

Merged
merged 2 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bobanetwork/graphql-utils",
"version": "1.1.15",
"version": "1.1.16",
"description": "GraphQL services to be consumed by frontend/backend services.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
2 changes: 0 additions & 2 deletions src/anchorage/anchorage.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,10 +414,8 @@ export class AnchorageGraphQLService extends GraphQLService {
const messagesPassed = await this.findWithdrawalMessagesPassed(withdrawalsInitiated.map((wI) => wI.block_number), l2ChainId)
const withdrawalHashes = messagesPassed.map((mP) => mP.withdrawalHash)
const provenWithdrawals = await this.findWithdrawalsProven(withdrawalHashes, l1ChainId)
console.log(`provenWithdrawals`, provenWithdrawals)
const finalizedWithdrawals =
await this.findWithdrawalsFinalized(withdrawalHashes, l1ChainId)
console.log(`finalizedWithdrawals`, finalizedWithdrawals)

const withdrawalTransactions: any[] = []
for (const withdrawalHashCandidate of withdrawalHashes) {
Expand Down
Loading
Loading