Sfoglia il codice sorgente

Run formatter to trigger CI

commit-id:7c643d79
Stan Drozd 3 anni fa
parent
commit
c7008e1b46
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      third_party/pyth/p2w-terra-relay/src/relay/iface.ts

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

@@ -19,7 +19,7 @@ export class RelayResult {
   code: RelayRetcode;
   txHashes: Array<string>; /// One or more tx hashes produced by a successful relay() call
 
-  constructor(code: RelayRetcode, hashes: Array<string> ) {
+  constructor(code: RelayRetcode, hashes: Array<string>) {
     this.code = code;
     this.txHashes = hashes;
   }