Add sync interface

This commit is contained in:
Arnau B
2020-08-20 16:17:14 +02:00
parent 87a74c471a
commit 1cbf54acc7
6 changed files with 118 additions and 16 deletions

12
common/exittree.go Normal file
View File

@@ -0,0 +1,12 @@
package common
import (
"math/big"
)
type ExitTreeLeaf struct {
AccountIdx Idx
MerkleProof []byte
Amount *big.Int
Nullifier *big.Int
}