mirror of
https://github.com/arnaucube/hermez-node.git
synced 2026-02-07 03:16:45 +01:00
13 lines
146 B
Go
13 lines
146 B
Go
package common
|
|
|
|
import (
|
|
"math/big"
|
|
)
|
|
|
|
type ExitInfo struct {
|
|
AccountIdx Idx
|
|
MerkleProof []byte
|
|
Balance *big.Int
|
|
Nullifier *big.Int
|
|
}
|