Skip to content

Commit b9d3740

Browse files
committed
Lint
1 parent 3bd7a19 commit b9d3740

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

packages/core/solidity/src/account.ts

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@ import { defineFunctions } from './utils/define-functions';
44
import { printContract } from './print';
55
import { defaults as commonDefaults, withCommonDefaults, type CommonOptions } from './common-options';
66
import { setInfo } from './set-info';
7-
import { addLockingConstructorAllowReachable, addSigner, signerArgs, signerFunctions, signers, type SignerOptions } from './signer';
7+
import {
8+
addLockingConstructorAllowReachable,
9+
addSigner,
10+
signerArgs,
11+
signerFunctions,
12+
signers,
13+
type SignerOptions,
14+
} from './signer';
815
import { setUpgradeableAccount } from './set-upgradeable';
916

1017
export const defaults: Required<AccountOptions> = {
@@ -197,7 +204,7 @@ function addSignerInitializer(c: ContractBuilder, opts: AccountOptions): void {
197204

198205
addLockingConstructorAllowReachable(c, [
199206
'// Accounts are typically deployed and initialized as clones during their first user op,',
200-
'// therefore, initializers are disabled for the implementation contract'
207+
'// therefore, initializers are disabled for the implementation contract',
201208
]);
202209

203210
const fn = { name: 'initialize', kind: 'public' as const, args: signerArgs[opts.signer] };

0 commit comments

Comments
 (0)