Skip to content

Commit

Permalink
remove redundat toString
Browse files Browse the repository at this point in the history
  • Loading branch information
volodymyr-basiuk committed Oct 3, 2023
1 parent 52738a6 commit 3bd2070
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/storage/blockchain/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ export class EthStateStorage implements IStateStorage {
isOldStateGenesis,
proof.proof.pi_a.slice(0, 2),
[
[proof.proof.pi_b[0][1].toString(), proof.proof.pi_b[0][0].toString()],
[proof.proof.pi_b[1][1].toString(), proof.proof.pi_b[1][0].toString()]
[proof.proof.pi_b[0][1], proof.proof.pi_b[0][0]],
[proof.proof.pi_b[1][1], proof.proof.pi_b[1][0]]
],
proof.proof.pi_c.slice(0, 2)
];
Expand Down

0 comments on commit 3bd2070

Please sign in to comment.