Skip to content

Commit

Permalink
skip returning private nonce in public apis
Browse files Browse the repository at this point in the history
  • Loading branch information
himanshu committed Nov 28, 2023
1 parent eb36f01 commit b218157
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/sapphire_devnet.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const TORUS_TEST_VERIFIER = "torus-test-health";
const TORUS_TEST_AGGREGATE_VERIFIER = "torus-test-health-aggregate";
const HashEnabledVerifier = "torus-test-verifierid-hash";

describe("torus utils sapphire", function () {
describe.only("torus utils sapphire", function () {
let torus: TorusUtils;
let TORUS_NODE_MANAGER: NodeManager;

Expand Down Expand Up @@ -222,7 +222,7 @@ describe("torus utils sapphire", function () {
X: "78a88b99d960808543e75076529c913c1678bc7fafbb943f1ce58235fd2f4e0c",
Y: "6b451282135dfacd22561e0fb5bf21aea7b1f26f2442164b82b0e4c8f152f7a7",
},
nonce: new BN("376df8a62e2e72a2b3e87e97c85f86b3f2dac41082ddeb863838d80462deab5e", "hex"),
nonce: new BN("0", "hex"),
upgraded: false,
typeOfUser: "v2",
},
Expand Down Expand Up @@ -278,7 +278,7 @@ describe("torus utils sapphire", function () {
X: "78a88b99d960808543e75076529c913c1678bc7fafbb943f1ce58235fd2f4e0c",
Y: "6b451282135dfacd22561e0fb5bf21aea7b1f26f2442164b82b0e4c8f152f7a7",
},
nonce: new BN("376df8a62e2e72a2b3e87e97c85f86b3f2dac41082ddeb863838d80462deab5e", "hex"),
nonce: new BN("0", "hex"),
upgraded: false,
typeOfUser: "v2",
},
Expand Down Expand Up @@ -510,7 +510,7 @@ describe("torus utils sapphire", function () {
X: "d6404befc44e3ab77a8387829d77e9c77a9c2fb37ae314c3a59bdc108d70349d",
Y: "1054dfe297f1d977ccc436109cbcce64e95b27f93efc0f1dab739c9146eda2e",
},
nonce: new BN("51eb06f7901d5a8562274d3e53437328ca41ad96926f075122f6bd50e31be52d", "hex"),
nonce: new BN("0", "hex"),
upgraded: false,
typeOfUser: "v2",
},
Expand Down Expand Up @@ -553,7 +553,7 @@ describe("torus utils sapphire", function () {
X: "d6404befc44e3ab77a8387829d77e9c77a9c2fb37ae314c3a59bdc108d70349d",
Y: "1054dfe297f1d977ccc436109cbcce64e95b27f93efc0f1dab739c9146eda2e",
},
nonce: new BN("51eb06f7901d5a8562274d3e53437328ca41ad96926f075122f6bd50e31be52d", "hex"),
nonce: new BN("0", "hex"),
upgraded: false,
typeOfUser: "v2",
},
Expand Down

0 comments on commit b218157

Please sign in to comment.