浏览代码

p2w relay interface: remove config from Relay iface

commit-id:0359d886
Stan Drozd 3 年之前
父节点
当前提交
6916266fa7
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 0 2
      third_party/pyth/p2w-terra-relay/src/relay/iface.ts

+ 0 - 2
third_party/pyth/p2w-terra-relay/src/relay/iface.ts

@@ -14,8 +14,6 @@ export interface RelayConfig {
 
 /// Represents a target chain relay client generically.
 export interface Relay<RelayConfig> {
-    /// Contains all configurable values specific to this target chain
-    readonly config: RelayConfig;
 
     /// Relay a signed Wormhole payload to this chain
     relay(payload: string): Promise<any>;