Skip to content

Commit

Permalink
misc: remove unused type defs
Browse files Browse the repository at this point in the history
  • Loading branch information
tammo committed Nov 2, 2020
1 parent 74f5e76 commit ed74157
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/Block.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ import { AssetSymbol } from './Blockchain';
import { SigPublicKey } from './Keys';
import { StorageId } from './Storage';

export type EncryptedNumber = string;
export type EncryptedString = string;

export class Signature extends String {}

export type SignatureData = {
Expand Down Expand Up @@ -43,8 +40,8 @@ export class Block {
claimSignature: string | undefined;
payload: string | undefined;
createdAt: number;
senderBalance: EncryptedNumber;
senderAmount: EncryptedNumber;
senderBalance: string;
senderAmount: string;

nonce?: number[];
state?: string;
Expand Down

0 comments on commit ed74157

Please sign in to comment.