Fix indentation

This commit is contained in:
Sergey Ukustov 2017-10-24 11:46:19 +03:00 committed by Leonid Logvinov
parent 0cc21db654
commit 4e0c67e2a1
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4

View File

@ -252,11 +252,11 @@ declare module 'web3' {
}
interface PersonalApi {
listAccounts: string[] | undefined;
newAccount(password?: string): string;
unlockAccount(address: string, password?: string, duration?: number): boolean;
lockAccount(address: string): boolean;
sign(message: string, account: string, password: string): string;
listAccounts: string[] | undefined;
newAccount(password?: string): string;
unlockAccount(address: string, password?: string, duration?: number): boolean;
lockAccount(address: string): boolean;
sign(message: string, account: string, password: string): string;
}
interface NetApi {