Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions aa-sdk/ethers/src/account-signer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ import {
import { isHex, toBytes, type Transport } from "viem";
import { EthersProviderAdapter } from "./provider-adapter.js";

// dummy comment added
console.log("dummy comment added");
Comment on lines +21 to +22
Copy link
Preview

Copilot AI Sep 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This debugging code should not be committed to production. Remove the console.log statement and dummy comment before merging.

Suggested change
// dummy comment added
console.log("dummy comment added");

Copilot uses AI. Check for mistakes.

const hexlifyOptional = (value: any): `0x${string}` | undefined => {
if (value == null) {
return undefined;
Expand Down
Loading