浏览代码

Run formatter to trigger CI

commit-id:7c643d79
Stan Drozd 3 年之前
父节点
当前提交
c7008e1b46
共有 1 个文件被更改,包括 1 次插入1 次删除
  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;
   }