diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-11-09 03:38:37 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-13 01:15:10 +0800 |
commit | f5f01c0c3e37c56136e7f8fb699304baa7eb5bf6 (patch) | |
tree | c90e37572716d98207cfeef744ac94324ba0752e /packages/pipeline/src/entities/relayer.ts | |
parent | 99d90bb66558bf24c9eaed9a4da19b99ebd7e3b1 (diff) | |
download | dexon-sol-tools-f5f01c0c3e37c56136e7f8fb699304baa7eb5bf6.tar dexon-sol-tools-f5f01c0c3e37c56136e7f8fb699304baa7eb5bf6.tar.gz dexon-sol-tools-f5f01c0c3e37c56136e7f8fb699304baa7eb5bf6.tar.bz2 dexon-sol-tools-f5f01c0c3e37c56136e7f8fb699304baa7eb5bf6.tar.lz dexon-sol-tools-f5f01c0c3e37c56136e7f8fb699304baa7eb5bf6.tar.xz dexon-sol-tools-f5f01c0c3e37c56136e7f8fb699304baa7eb5bf6.tar.zst dexon-sol-tools-f5f01c0c3e37c56136e7f8fb699304baa7eb5bf6.zip |
Add better error handling for immediately invoked async functions
Diffstat (limited to 'packages/pipeline/src/entities/relayer.ts')
-rw-r--r-- | packages/pipeline/src/entities/relayer.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/pipeline/src/entities/relayer.ts b/packages/pipeline/src/entities/relayer.ts index 605355fa8..94b5232a8 100644 --- a/packages/pipeline/src/entities/relayer.ts +++ b/packages/pipeline/src/entities/relayer.ts @@ -1,23 +1,23 @@ import { Column, Entity, PrimaryColumn } from 'typeorm'; -@Entity() +@Entity({ name: 'relayers' }) export class Relayer { @PrimaryColumn() public uuid!: string; @Column() public name!: string; @Column() public url!: string; - @Column({ nullable: true, type: String }) + @Column({ nullable: true, type: String, name: 'sra_http_endpoint' }) public sraHttpEndpoint!: string | null; - @Column({ nullable: true, type: String }) + @Column({ nullable: true, type: String, name: 'sra_ws_endpoint' }) public sraWsEndpoint!: string | null; - @Column({ nullable: true, type: String }) + @Column({ nullable: true, type: String, name: 'app_url' }) public appUrl!: string | null; // TODO(albrow): Add exchange contract or protocol version? // TODO(albrow): Add network ids for addresses? - @Column({ type: 'varchar', array: true }) + @Column({ type: 'varchar', array: true, name: 'fee_recipient_addresses' }) public feeRecipientAddresses!: string[]; - @Column({ type: 'varchar', array: true }) + @Column({ type: 'varchar', array: true, name: 'taker_addresses' }) public takerAddresses!: string[]; } |