Update StateDB to new & ExitInfo struct & BatchNum

Update StateDB to new & ExitInfo struct & BatchNum
Also a small fix at txselector & log packages
This commit is contained in:
arnaucube
2020-08-26 15:49:00 +02:00
parent 361af765ab
commit 9309722dfc
6 changed files with 27 additions and 29 deletions

View File

@@ -2,11 +2,13 @@ package common
import (
"math/big"
"github.com/iden3/go-merkletree"
)
type ExitInfo struct {
AccountIdx Idx
MerkleProof []byte
MerkleProof *merkletree.CircomVerifierProof
Balance *big.Int
Nullifier *big.Int
}