Skip to content

Commit

Permalink
Pre-lowercase addresses in ERC-1155 transfer scheduled event
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceManiac committed Apr 17, 2024
1 parent 13e97f6 commit e5bf668
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/engine/paima-sm/src/cde-erc1155-transfer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ export default async function processErc1155TransferDatum(
const scheduledInputData = [
scheduledPrefix,
operator,
from,
to,
from.toLowerCase(),
to.toLowerCase(),
JSON.stringify(ids),
JSON.stringify(values),
].join('|');
Expand Down

0 comments on commit e5bf668

Please sign in to comment.