Skip to content

Commit

Permalink
tweak: bump version_id, filter in vsc.* acounts
Browse files Browse the repository at this point in the history
  • Loading branch information
vaultec81 committed Mar 15, 2024
1 parent 626959b commit da2561a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vaultec/vsc-node",
"version": "0.1.0",
"version": "0.1.2",
"description": "",
"main": "dist/index.js",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/services/new/chainBridgeV2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export class ChainBridgeV2 {
}
}
} else if(op === 'transfer') {
if(opPayload.to === multisigAccount || opPayload.from === multisigAccount) {
if(opPayload.to === multisigAccount || opPayload.from === multisigAccount || opPayload.to.includes('vsc.') || opPayload.from.includes('vsc.')) {
return {
pass: true
}
Expand Down
2 changes: 1 addition & 1 deletion src/services/new/witness/versionManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Collection } from "mongodb";
export const VersionConfig = {
index_reset_id: 7,
//Match with package.json and tag
version_id: 'v0.1.1'
version_id: 'v0.1.2'
}

/**
Expand Down

0 comments on commit da2561a

Please sign in to comment.