Skip to content

Commit

Permalink
add isMulti to Transaction
Browse files Browse the repository at this point in the history
  • Loading branch information
Strernd committed Jun 15, 2020
1 parent 7f00e9c commit 622d4b1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions src/Transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { StorageId } from './Storage';
import { AssetSymbol } from './Blockchain';

export class Transaction {
isMulti?: false;
id: StorageId;
blocks: Block[] = [];

Expand Down
20 changes: 10 additions & 10 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { Block } from './Block';
import { Blockchain } from './Blockchain';
import { Transaction } from './Transaction';
import { Block } from './Block';
import { Blockchain } from './Blockchain';
import { Transaction } from './Transaction';

export * from './Block';
export * from './Blockchain';
export * from './Crypto';
export * from './Transaction';
export * from './Keys';
export * from './Ledger';
export * from './Storage';
export * from './Block';
export * from './Blockchain';
export * from './Crypto';
export * from './Transaction';
export * from './Keys';
export * from './Ledger';
export * from './Storage';

export type BlockTx = {
tx: Transaction;
Expand Down

0 comments on commit 622d4b1

Please sign in to comment.