Skip to content

Commit

Permalink
Remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
perekopskiy committed Oct 6, 2021
1 parent dc5b39a commit bb783e2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
2 changes: 0 additions & 2 deletions core/lib/storage/src/chain/operations_ext/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1410,8 +1410,6 @@ impl<'a, 'c> OperationsExtSchema<'a, 'c> {
.await?
.count;

println!("{:?}", token_id_value);

let priority_op_count = sqlx::query!(
r#"
SELECT COUNT(*) as "count!" FROM executed_priority_operations
Expand Down
5 changes: 0 additions & 5 deletions core/tests/ts-tests/tests/api.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,6 @@ describe('ZkSync REST API V0.2 tests', () => {
ethTxs.list.length,
`Endpoint returned incorrect number of transactions: ${ethTxs.list.length}, expected ${expectedETHTxs}`
).to.eql(expectedETHTxs);
console.log(ethTxs);

console.log(alice.address());

const wbtcTxs = await provider.accountTxs(
alice.accountId!,
Expand All @@ -134,7 +131,6 @@ describe('ZkSync REST API V0.2 tests', () => {
},
'wBTC'
);
console.log(wbtcTxs);
expect(
wbtcTxs.list.length,
`Endpoint returned incorrect number of transactions: ${wbtcTxs.list.length}, expected ${expectedETHTxs}`
Expand All @@ -145,7 +141,6 @@ describe('ZkSync REST API V0.2 tests', () => {
limit: 10,
direction: 'older'
});
console.log(allTxs);
expect(
allTxs.list.length,
`Endpoint returned incorrect number of transactions: ${allTxs.list.length}, expected ${expectedAll}`
Expand Down

0 comments on commit bb783e2

Please sign in to comment.