Skip to content

Commit

Permalink
Merge branch 'master' into pk910/trigger-el-requests
Browse files Browse the repository at this point in the history
  • Loading branch information
pk910 committed Nov 5, 2024
2 parents a03024f + fd676d4 commit 2392b5a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ const DepositsTable = (props: IDepositsTableProps): React.ReactElement => {
return {
deposits: json.map((deposit: IDeposit) => {
deposit.validity = verifyDeposit(deposit, signingDomain);
deposit.depositTxs = depositTxs.filter((tx: IDepositTx) => tx.pubkey === deposit.pubkey);
deposit.depositTxs = depositTxs.filter((tx: IDepositTx) => tx.pubkey === "0x" + deposit.pubkey);
return deposit;
}),
loadDepositsErr: loadDepositsErr,
Expand Down

0 comments on commit 2392b5a

Please sign in to comment.