Skip to content

Commit

Permalink
feat: use number for rule ids
Browse files Browse the repository at this point in the history
  • Loading branch information
monitz87 committed Apr 16, 2020
1 parent 82d52a3 commit 863a14c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/types/index.ts
@@ -1,5 +1,3 @@
import BigNumber from 'bignumber.js';

export enum TransactionStatus {
/**
* the transaction is prepped to run
Expand Down Expand Up @@ -191,7 +189,7 @@ export type Condition = { target: ConditionTarget; trustedIssuers: string[] } &
);

export interface Rule {
id: BigNumber;
id: number;
conditions: Condition[];
}

Expand Down

0 comments on commit 863a14c

Please sign in to comment.