Skip to content

Commit

Permalink
Fix file name inconsistency
Browse files Browse the repository at this point in the history
* Rename accounts.ts to Accounts.ts
  • Loading branch information
QPotato authored and perfectmak committed Jun 30, 2019
1 parent 89b8e4a commit f749962
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/Transactions.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import BigNumber from 'bignumber.js';
import { AccountAddress } from './wallet/accounts';
import { AccountAddress } from './wallet/Accounts';

interface LibraProgram {
code: Uint8Array;
Expand Down
2 changes: 1 addition & 1 deletion lib/wallet/accounts.ts → lib/wallet/Accounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import BigNumber from 'bignumber.js';
import { SHA3 } from 'sha3';
import { CursorBuffer } from '../common/CursorBuffer';
import Addresses from '../constants/Addresses';
import { KeyPair } from '../crypto/EdDsa';
import { KeyPair } from '../crypto/Eddsa';

export type AccountStates = AccountState[];

Expand Down
2 changes: 1 addition & 1 deletion lib/wallet/KeyFactory.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import KeyPrefixes from '../constants/KeyPrefixes';
import { KeyPair } from '../crypto/EdDsa';
import { KeyPair } from '../crypto/Eddsa';
import { Hkdf } from '../crypto/Hkdf';
import { Pbkdf } from '../crypto/Pbkdf';
import { Mnemonic } from './Mnemonic';
Expand Down
2 changes: 1 addition & 1 deletion lib/wallet/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Account } from './accounts';
import { Account } from './Accounts';
import { KeyFactory, Seed } from './KeyFactory';
import { Mnemonic } from './Mnemonic';

Expand Down

0 comments on commit f749962

Please sign in to comment.