Pārlūkot izejas kodu

p2w relay interface: remove config from Relay iface

commit-id:0359d886
Stan Drozd 3 gadi atpakaļ
vecāks
revīzija
6916266fa7
1 mainītis faili ar 0 papildinājumiem un 2 dzēšanām
  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>;