Skip to content

Commit

Permalink
chore: Add relayer address when sending bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
arddluma committed Feb 3, 2025
1 parent e0c3fb2 commit 3c41762
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ export class ClassicRelayer extends BaseRelayer {
hash = await this.provider.send(method, params);
}

this.logger.debug(`Sent new bundle ${hash}`);
const relayerAddress = await relayer.getAddress();
this.logger.debug(`Sent new bundle ${hash} using relayer ${relayerAddress}`);
return hash;
}
}

0 comments on commit 3c41762

Please sign in to comment.