Skip to content

Commit

Permalink
fix: fixed evm address compare check (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
Defus-E authored Feb 4, 2025
1 parent f67fffd commit 6cccf2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/EVM/EVMStepExecutor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class EVMStepExecutor extends BaseStepExecutor {
)(undefined)) as GetAddressesReturnType
accountAddress = accountAddresses?.[0]
}
if (accountAddress !== step.action.fromAddress) {
if (accountAddress?.toLowerCase() !== step.action.fromAddress?.toLowerCase()) {
let processToUpdate = process
if (!processToUpdate) {
// We need to create some process if we don't have one so we can show the error
Expand Down

0 comments on commit 6cccf2d

Please sign in to comment.