Merge pull request #198 from hermeznetwork/fix/rqcompresseddata

Fix/rqcompresseddata
This commit is contained in:
Eduard S
2020-10-15 11:59:38 +02:00
committed by GitHub
4 changed files with 40 additions and 34 deletions

View File

@@ -69,7 +69,7 @@ func GenPoolTxs(n int, tokens []common.Token) []*common.PoolL2Tx {
tx.RqTokenID = common.TokenID(i)
tx.RqAmount = big.NewInt(int64(i))
tx.RqFee = common.FeeSelector(i)
tx.RqNonce = uint64(i)
tx.RqNonce = common.Nonce(i)
}
txs = append(txs, tx)
}