Skip to content

Commit

Permalink
Merge branch 'out-dated-packages' into 'dev'
Browse files Browse the repository at this point in the history
Out dated packages

See merge request ergo/rosen-bridge/watcher!196
  • Loading branch information
vorujack committed Dec 10, 2023
2 parents 5aa6554 + 32623f9 commit 8219fc5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion services/watcher/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"dependencies": {
"@emurgo/cip14-js": "^3.0.1",
"@rosen-bridge/address-extractor": "^3.0.0",
"@rosen-bridge/health-check": "^3.0.0",
"@rosen-bridge/health-check": "^3.0.1",
"@rosen-bridge/minimum-fee": "^0.1.13",
"@rosen-bridge/observation-extractor": "^4.0.0",
"@rosen-bridge/scanner": "^3.0.0",
Expand Down
4 changes: 2 additions & 2 deletions services/watcher/src/api/Transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import WinstonLogger from '@rosen-bridge/winston-logger';
const logger = WinstonLogger.getInstance().getLogger(import.meta.url);

export type ApiResponse = {
response: string;
response: string | string[];
status: number;
};

Expand Down Expand Up @@ -402,7 +402,7 @@ export class Transaction {
? Transaction.watcherWID
: '';
return {
response: `[${unlockTxIds.join(', ')}]`,
response: unlockTxIds,
status: 200,
};
} catch (e) {
Expand Down

0 comments on commit 8219fc5

Please sign in to comment.