You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
206 B

  1. package common
  2. import (
  3. "math/big"
  4. "github.com/iden3/go-merkletree"
  5. )
  6. type ExitInfo struct {
  7. AccountIdx Idx
  8. MerkleProof *merkletree.CircomVerifierProof
  9. Balance *big.Int
  10. Nullifier *big.Int
  11. }