Fix PoolL2Tx.RqTxCompressedData

This commit is contained in:
arnaucube
2020-10-14 18:30:58 +02:00
parent 17ff917a20
commit d7a1ba19b9
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)
}