diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-11-08 07:29:34 +0800 |
---|---|---|
committer | Alex Browne <stephenalexbrowne@gmail.com> | 2018-12-05 06:24:48 +0800 |
commit | 8248fbb231a0c0acd59fd1f265114dd6dc78a253 (patch) | |
tree | 7e1ef92c4ed8245b243d4ffaedc8690f913e6ac0 /packages/pipeline/src/entities | |
parent | dca2a4e9c2712f67852bed4ae6ae76c6434f7e56 (diff) | |
download | dexon-0x-contracts-8248fbb231a0c0acd59fd1f265114dd6dc78a253.tar.gz dexon-0x-contracts-8248fbb231a0c0acd59fd1f265114dd6dc78a253.tar.zst dexon-0x-contracts-8248fbb231a0c0acd59fd1f265114dd6dc78a253.zip |
Update relayer code to use new relayer-registry format
Diffstat (limited to 'packages/pipeline/src/entities')
-rw-r--r-- | packages/pipeline/src/entities/Relayer.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/pipeline/src/entities/Relayer.ts b/packages/pipeline/src/entities/Relayer.ts index ebdcbf345..605355fa8 100644 --- a/packages/pipeline/src/entities/Relayer.ts +++ b/packages/pipeline/src/entities/Relayer.ts @@ -2,8 +2,9 @@ import { Column, Entity, PrimaryColumn } from 'typeorm'; @Entity() export class Relayer { - @PrimaryColumn() public name!: string; + @PrimaryColumn() public uuid!: string; + @Column() public name!: string; @Column() public url!: string; @Column({ nullable: true, type: String }) public sraHttpEndpoint!: string | null; |