Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
pscott committed Oct 29, 2024
1 parent 9d77057 commit 996351d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/mana/src/db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,5 +115,8 @@ export async function getProposal(id: string) {
}

export async function getDataByMessageHash(hash: string) {
return knex(REGISTERED_TRANSACTIONS).select(['type', 'data', 'hash', 'network']).where({ hash }).first();
return knex(REGISTERED_TRANSACTIONS)
.select(['type', 'data', 'hash', 'network'])
.where({ hash })
.first();
}

0 comments on commit 996351d

Please sign in to comment.