You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

524 lines
19 KiB

  1. package txselector
  2. // current: very simple version of TxSelector
  3. import (
  4. "bytes"
  5. "fmt"
  6. "math/big"
  7. "sort"
  8. ethCommon "github.com/ethereum/go-ethereum/common"
  9. "github.com/hermeznetwork/hermez-node/common"
  10. "github.com/hermeznetwork/hermez-node/db/l2db"
  11. "github.com/hermeznetwork/hermez-node/db/statedb"
  12. "github.com/hermeznetwork/hermez-node/log"
  13. "github.com/hermeznetwork/hermez-node/txprocessor"
  14. "github.com/hermeznetwork/tracerr"
  15. "github.com/iden3/go-iden3-crypto/babyjub"
  16. )
  17. // txs implements the interface Sort for an array of Tx
  18. type txs []common.PoolL2Tx
  19. func (t txs) Len() int {
  20. return len(t)
  21. }
  22. func (t txs) Swap(i, j int) {
  23. t[i], t[j] = t[j], t[i]
  24. }
  25. func (t txs) Less(i, j int) bool {
  26. return t[i].AbsoluteFee > t[j].AbsoluteFee
  27. }
  28. // CoordAccount contains the data of the Coordinator account, that will be used
  29. // to create new transactions of CreateAccountDeposit type to add new TokenID
  30. // accounts for the Coordinator to receive the fees.
  31. type CoordAccount struct {
  32. Addr ethCommon.Address
  33. BJJ babyjub.PublicKeyComp
  34. AccountCreationAuth []byte // signature in byte array format
  35. }
  36. // SelectionConfig contains the parameters of configuration of the selection of
  37. // transactions for the next batch
  38. type SelectionConfig struct {
  39. // MaxL1UserTxs is the maximum L1-user-tx for a batch
  40. MaxL1UserTxs uint64
  41. // TxProcessorConfig contains the config for ProcessTxs
  42. TxProcessorConfig txprocessor.Config
  43. }
  44. // TxSelector implements all the functionalities to select the txs for the next
  45. // batch
  46. type TxSelector struct {
  47. l2db *l2db.L2DB
  48. localAccountsDB *statedb.LocalStateDB
  49. coordAccount *CoordAccount
  50. }
  51. // NewTxSelector returns a *TxSelector
  52. func NewTxSelector(coordAccount *CoordAccount, dbpath string,
  53. synchronizerStateDB *statedb.StateDB, l2 *l2db.L2DB) (*TxSelector, error) {
  54. localAccountsDB, err := statedb.NewLocalStateDB(dbpath, 128,
  55. synchronizerStateDB, statedb.TypeTxSelector, 0) // without merkletree
  56. if err != nil {
  57. return nil, tracerr.Wrap(err)
  58. }
  59. return &TxSelector{
  60. l2db: l2,
  61. localAccountsDB: localAccountsDB,
  62. coordAccount: coordAccount,
  63. }, nil
  64. }
  65. // LocalAccountsDB returns the LocalStateDB of the TxSelector
  66. func (txsel *TxSelector) LocalAccountsDB() *statedb.LocalStateDB {
  67. return txsel.localAccountsDB
  68. }
  69. // Reset tells the TxSelector to get it's internal AccountsDB
  70. // from the required `batchNum`
  71. func (txsel *TxSelector) Reset(batchNum common.BatchNum) error {
  72. err := txsel.localAccountsDB.Reset(batchNum, true)
  73. if err != nil {
  74. return tracerr.Wrap(err)
  75. }
  76. return nil
  77. }
  78. func (txsel *TxSelector) getCoordIdx(tokenID common.TokenID) (common.Idx, error) {
  79. return txsel.localAccountsDB.GetIdxByEthAddrBJJ(txsel.coordAccount.Addr,
  80. txsel.coordAccount.BJJ, tokenID)
  81. }
  82. // coordAccountForTokenID creates a new L1CoordinatorTx to create a new
  83. // Coordinator account for the given TokenID in the case that the account does
  84. // not exist yet in the db, and does not exist a L1CoordinatorTx to creat that
  85. // account in the given array of L1CoordinatorTxs. If a new Coordinator account
  86. // needs to be created, a new L1CoordinatorTx will be returned from this
  87. // function. After calling this method, if the l1CoordinatorTx is added to the
  88. // selection, positionL1 must be increased 1.
  89. func (txsel *TxSelector) coordAccountForTokenID(l1CoordinatorTxs []common.L1Tx,
  90. tokenID common.TokenID, positionL1 int) (*common.L1Tx, int, error) {
  91. // check if CoordinatorAccount for TokenID is already pending to create
  92. if checkAlreadyPendingToCreate(l1CoordinatorTxs, tokenID,
  93. txsel.coordAccount.Addr, txsel.coordAccount.BJJ) {
  94. return nil, positionL1, nil
  95. }
  96. _, err := txsel.getCoordIdx(tokenID)
  97. if tracerr.Unwrap(err) == statedb.ErrIdxNotFound {
  98. // create L1CoordinatorTx to create new CoordAccount for
  99. // TokenID
  100. l1CoordinatorTx := common.L1Tx{
  101. Position: positionL1,
  102. UserOrigin: false,
  103. FromEthAddr: txsel.coordAccount.Addr,
  104. FromBJJ: txsel.coordAccount.BJJ,
  105. TokenID: tokenID,
  106. Amount: big.NewInt(0),
  107. DepositAmount: big.NewInt(0),
  108. Type: common.TxTypeCreateAccountDeposit,
  109. }
  110. return &l1CoordinatorTx, positionL1, nil
  111. }
  112. if err != nil {
  113. return nil, positionL1, tracerr.Wrap(err)
  114. }
  115. // CoordAccount for TokenID already exists
  116. return nil, positionL1, nil
  117. }
  118. // GetL2TxSelection returns the L1CoordinatorTxs and a selection of the L2Txs
  119. // for the next batch, from the L2DB pool.
  120. // It returns: the CoordinatorIdxs used to receive the fees of the selected
  121. // L2Txs. An array of bytearrays with the signatures of the
  122. // AccountCreationAuthorization of the accounts of the users created by the
  123. // Coordinator with L1CoordinatorTxs of those accounts that does not exist yet
  124. // but there is a transactions to them and the authorization of account
  125. // creation exists. The L1UserTxs, L1CoordinatorTxs, PoolL2Txs that will be
  126. // included in the next batch.
  127. func (txsel *TxSelector) GetL2TxSelection(selectionConfig *SelectionConfig,
  128. batchNum common.BatchNum) ([]common.Idx, [][]byte, []common.L1Tx,
  129. []common.PoolL2Tx, error) {
  130. coordIdxs, accCreationAuths, _, l1CoordinatorTxs, l2Txs, err :=
  131. txsel.GetL1L2TxSelection(selectionConfig, batchNum, []common.L1Tx{})
  132. return coordIdxs, accCreationAuths, l1CoordinatorTxs, l2Txs, tracerr.Wrap(err)
  133. }
  134. // GetL1L2TxSelection returns the selection of L1 + L2 txs.
  135. // It returns: the CoordinatorIdxs used to receive the fees of the selected
  136. // L2Txs. An array of bytearrays with the signatures of the
  137. // AccountCreationAuthorization of the accounts of the users created by the
  138. // Coordinator with L1CoordinatorTxs of those accounts that does not exist yet
  139. // but there is a transactions to them and the authorization of account
  140. // creation exists. The L1UserTxs, L1CoordinatorTxs, PoolL2Txs that will be
  141. // included in the next batch.
  142. func (txsel *TxSelector) GetL1L2TxSelection(selectionConfig *SelectionConfig,
  143. batchNum common.BatchNum, l1UserTxs []common.L1Tx) ([]common.Idx, [][]byte,
  144. []common.L1Tx, []common.L1Tx, []common.PoolL2Tx, error) {
  145. // TODO input parameter 'batchNum' is not used, delete
  146. // WIP.0: the TxSelector is not optimized and will need a redesign. The
  147. // current version is implemented in order to have a functional
  148. // implementation that can be used asap.
  149. //
  150. // WIP.1: this method uses a 'cherry-pick' of internal calls of the
  151. // StateDB, a refactor of the StateDB to reorganize it internally is
  152. // planned once the main functionallities are covered, with that
  153. // refactor the TxSelector will be updated also.
  154. // get pending l2-tx from tx-pool
  155. l2TxsRaw, err := txsel.l2db.GetPendingTxs()
  156. if err != nil {
  157. return nil, nil, nil, nil, nil, tracerr.Wrap(err)
  158. }
  159. txselStateDB := txsel.localAccountsDB.StateDB
  160. tp := txprocessor.NewTxProcessor(txselStateDB, selectionConfig.TxProcessorConfig)
  161. // Process L1UserTxs
  162. for i := 0; i < len(l1UserTxs); i++ {
  163. // assumption: l1usertx are sorted by L1Tx.Position
  164. _, _, _, _, err := tp.ProcessL1Tx(nil, &l1UserTxs[i])
  165. if err != nil {
  166. return nil, nil, nil, nil, nil, tracerr.Wrap(err)
  167. }
  168. }
  169. var l1CoordinatorTxs []common.L1Tx
  170. positionL1 := len(l1UserTxs)
  171. var accAuths [][]byte
  172. // sort l2TxsRaw (cropping at MaxTx at this point)
  173. l2Txs0 := txsel.getL2Profitable(l2TxsRaw, selectionConfig.TxProcessorConfig.MaxTx)
  174. noncesMap := make(map[common.Idx]common.Nonce)
  175. var l2Txs []common.PoolL2Tx
  176. // iterate over l2Txs
  177. // - if tx.TokenID does not exist at CoordsIdxDB
  178. // - create new L1CoordinatorTx creating a CoordAccount, for
  179. // Coordinator to receive the fee of the new TokenID
  180. for i := 0; i < len(l2Txs0); i++ {
  181. accSender, err := tp.StateDB().GetAccount(l2Txs0[i].FromIdx)
  182. if err != nil {
  183. return nil, nil, nil, nil, nil, tracerr.Wrap(err)
  184. }
  185. // populate the noncesMap used at the next iteration
  186. noncesMap[l2Txs0[i].FromIdx] = accSender.Nonce
  187. // if TokenID does not exist yet, create new L1CoordinatorTx to
  188. // create the CoordinatorAccount for that TokenID, to receive
  189. // the fees. Only in the case that there does not exist yet a
  190. // pending L1CoordinatorTx to create the account for the
  191. // Coordinator for that TokenID
  192. var newL1CoordTx *common.L1Tx
  193. newL1CoordTx, positionL1, err =
  194. txsel.coordAccountForTokenID(l1CoordinatorTxs,
  195. accSender.TokenID, positionL1)
  196. if err != nil {
  197. return nil, nil, nil, nil, nil, tracerr.Wrap(err)
  198. }
  199. if newL1CoordTx != nil {
  200. // if there is no space for the L1CoordinatorTx, discard the L2Tx
  201. if len(l1CoordinatorTxs) >= int(selectionConfig.MaxL1UserTxs)-len(l1UserTxs) {
  202. // discard L2Tx
  203. continue
  204. }
  205. // increase positionL1
  206. positionL1++
  207. l1CoordinatorTxs = append(l1CoordinatorTxs, *newL1CoordTx)
  208. accAuths = append(accAuths, txsel.coordAccount.AccountCreationAuth)
  209. }
  210. l2Txs = append(l2Txs, l2Txs0[i])
  211. }
  212. var validTxs []common.PoolL2Tx
  213. // iterate over l2TxsRaw
  214. // - check Nonces
  215. // - if needed, create new L1CoordinatorTxs for unexisting ToIdx
  216. // - keep used accAuths
  217. // - put the valid txs into validTxs array
  218. for i := 0; i < len(l2Txs); i++ {
  219. // check if Nonce is correct
  220. nonce := noncesMap[l2Txs[i].FromIdx]
  221. if l2Txs[i].Nonce == nonce {
  222. noncesMap[l2Txs[i].FromIdx]++
  223. } else {
  224. // not valid Nonce at tx
  225. continue
  226. }
  227. // If tx.ToIdx>=256, tx.ToIdx should exist to localAccountsDB,
  228. // if so, tx is used. If tx.ToIdx==0, for an L2Tx will be the
  229. // case of TxToEthAddr or TxToBJJ, check if
  230. // tx.ToEthAddr/tx.ToBJJ exist in localAccountsDB, if yes tx is
  231. // used; if not, check if tx.ToEthAddr is in
  232. // AccountCreationAuthDB, if so, tx is used and L1CoordinatorTx
  233. // of CreateAccountAndDeposit is created. If tx.ToIdx==1, is a
  234. // Exit type and is used.
  235. if l2Txs[i].ToIdx == 0 { // ToEthAddr/ToBJJ case
  236. validL2Tx, l1CoordinatorTx, accAuth, err :=
  237. txsel.processTxToEthAddrBJJ(validTxs, selectionConfig,
  238. len(l1UserTxs), l1CoordinatorTxs, positionL1, l2Txs[i])
  239. if err != nil {
  240. log.Debug(err)
  241. continue
  242. }
  243. if accAuth != nil && l1CoordinatorTx != nil {
  244. accAuths = append(accAuths, accAuth.Signature)
  245. l1CoordinatorTxs = append(l1CoordinatorTxs, *l1CoordinatorTx)
  246. positionL1++
  247. }
  248. if validL2Tx != nil {
  249. validTxs = append(validTxs, *validL2Tx)
  250. }
  251. } else if l2Txs[i].ToIdx >= common.IdxUserThreshold {
  252. _, err = txsel.localAccountsDB.GetAccount(l2Txs[i].ToIdx)
  253. if err != nil {
  254. // tx not valid
  255. log.Debugw("invalid L2Tx: ToIdx not found in StateDB",
  256. "ToIdx", l2Txs[i].ToIdx)
  257. continue
  258. }
  259. // TODO if EthAddr!=0 or BJJ!=0, check that ToIdxAccount.EthAddr or BJJ
  260. // Account found in the DB, include the l2Tx in the selection
  261. validTxs = append(validTxs, l2Txs[i])
  262. } else if l2Txs[i].ToIdx == common.Idx(1) {
  263. // valid txs (of Exit type)
  264. validTxs = append(validTxs, l2Txs[i])
  265. }
  266. }
  267. // Process L1CoordinatorTxs
  268. for i := 0; i < len(l1CoordinatorTxs); i++ {
  269. _, _, _, _, err := tp.ProcessL1Tx(nil, &l1CoordinatorTxs[i])
  270. if err != nil {
  271. return nil, nil, nil, nil, nil, tracerr.Wrap(err)
  272. }
  273. }
  274. // get CoordIdxsMap for the TokenIDs
  275. coordIdxsMap := make(map[common.TokenID]common.Idx)
  276. for i := 0; i < len(l2Txs); i++ {
  277. // get TokenID from tx.Sender
  278. accSender, err := tp.StateDB().GetAccount(l2Txs[i].FromIdx)
  279. if err != nil {
  280. return nil, nil, nil, nil, nil, tracerr.Wrap(err)
  281. }
  282. tokenID := accSender.TokenID
  283. coordIdx, err := txsel.getCoordIdx(tokenID)
  284. if err != nil {
  285. // if err is db.ErrNotFound, should not happen, as all
  286. // the l2Txs.TokenID should have a CoordinatorIdx
  287. // created in the DB at this point
  288. return nil, nil, nil, nil, nil, tracerr.Wrap(err)
  289. }
  290. coordIdxsMap[tokenID] = coordIdx
  291. }
  292. var coordIdxs []common.Idx
  293. tp.AccumulatedFees = make(map[common.Idx]*big.Int)
  294. for _, idx := range coordIdxsMap {
  295. tp.AccumulatedFees[idx] = big.NewInt(0)
  296. coordIdxs = append(coordIdxs, idx)
  297. }
  298. // sort CoordIdxs
  299. sort.SliceStable(coordIdxs, func(i, j int) bool {
  300. return coordIdxs[i] < coordIdxs[j]
  301. })
  302. // get most profitable L2-tx
  303. maxL2Txs := selectionConfig.TxProcessorConfig.MaxTx -
  304. uint32(len(l1UserTxs)) - uint32(len(l1CoordinatorTxs))
  305. selectedL2Txs := txsel.getL2Profitable(l2Txs, maxL2Txs) // TODO this will only need to crop the lasts, as are already sorted
  306. for i := 0; i < len(selectedL2Txs); i++ {
  307. _, _, _, err = tp.ProcessL2Tx(coordIdxsMap, nil, nil, &selectedL2Txs[i])
  308. if err != nil {
  309. return nil, nil, nil, nil, nil, tracerr.Wrap(err)
  310. }
  311. }
  312. // distribute the AccumulatedFees from the processed L2Txs into the
  313. // Coordinator Idxs
  314. for idx, accumulatedFee := range tp.AccumulatedFees {
  315. cmp := accumulatedFee.Cmp(big.NewInt(0))
  316. if cmp == 1 { // accumulatedFee>0
  317. // send the fee to the Idx of the Coordinator for the TokenID
  318. accCoord, err := txsel.localAccountsDB.GetAccount(idx)
  319. if err != nil {
  320. log.Errorw("Can not distribute accumulated fees to coordinator account: No coord Idx to receive fee", "idx", idx)
  321. return nil, nil, nil, nil, nil, tracerr.Wrap(err)
  322. }
  323. accCoord.Balance = new(big.Int).Add(accCoord.Balance, accumulatedFee)
  324. _, err = txsel.localAccountsDB.UpdateAccount(idx, accCoord)
  325. if err != nil {
  326. log.Error(err)
  327. return nil, nil, nil, nil, nil, tracerr.Wrap(err)
  328. }
  329. }
  330. }
  331. err = tp.StateDB().MakeCheckpoint()
  332. if err != nil {
  333. return nil, nil, nil, nil, nil, tracerr.Wrap(err)
  334. }
  335. return coordIdxs, accAuths, l1UserTxs, l1CoordinatorTxs, selectedL2Txs, nil
  336. }
  337. // processTxsToEthAddrBJJ process the common.PoolL2Tx in the case where
  338. // ToIdx==0, which can be the tx type of ToEthAddr or ToBJJ. If the receiver
  339. // does not have an account yet, a new L1CoordinatorTx of type
  340. // CreateAccountDeposit (with 0 as DepositAmount) is created and added to the
  341. // l1CoordinatorTxs array, and then the PoolL2Tx is added into the validTxs
  342. // array.
  343. func (txsel *TxSelector) processTxToEthAddrBJJ(validTxs []common.PoolL2Tx,
  344. selectionConfig *SelectionConfig, nL1UserTxs int, l1CoordinatorTxs []common.L1Tx,
  345. positionL1 int, l2Tx common.PoolL2Tx) (*common.PoolL2Tx, *common.L1Tx,
  346. *common.AccountCreationAuth, error) {
  347. accSender, err := txsel.localAccountsDB.GetAccount(l2Tx.FromIdx)
  348. if err != nil {
  349. return nil, nil, nil, err
  350. }
  351. l2Tx.TokenID = accSender.TokenID // TODO rm and add it before at GetL1L2TxsSelection
  352. // if L2Tx needs a new L1CoordinatorTx of CreateAccount type, and a
  353. // previous L2Tx in the current process already created a
  354. // L1CoordinatorTx of this type, in the DB there still seem that needs
  355. // to create a new L1CoordinatorTx, but as is already created, the tx
  356. // is valid
  357. if checkAlreadyPendingToCreate(l1CoordinatorTxs, l2Tx.TokenID, l2Tx.ToEthAddr, l2Tx.ToBJJ) {
  358. return &l2Tx, nil, nil, nil
  359. }
  360. var l1CoordinatorTx *common.L1Tx
  361. var accAuth *common.AccountCreationAuth
  362. if !bytes.Equal(l2Tx.ToEthAddr.Bytes(), common.EmptyAddr.Bytes()) &&
  363. !bytes.Equal(l2Tx.ToEthAddr.Bytes(), common.FFAddr.Bytes()) {
  364. // case: ToEthAddr != 0x00 neither 0xff
  365. if l2Tx.ToBJJ != common.EmptyBJJComp {
  366. // case: ToBJJ!=0:
  367. // if idx exist for EthAddr&BJJ use it
  368. _, err := txsel.localAccountsDB.GetIdxByEthAddrBJJ(l2Tx.ToEthAddr,
  369. l2Tx.ToBJJ, l2Tx.TokenID)
  370. if err == nil {
  371. // account for ToEthAddr&ToBJJ already exist,
  372. // there is no need to create a new one.
  373. // tx valid, StateDB will use the ToIdx==0 to define the AuxToIdx
  374. return &l2Tx, nil, nil, nil
  375. }
  376. // if not, check if AccountCreationAuth exist for that
  377. // ToEthAddr
  378. accAuth, err = txsel.l2db.GetAccountCreationAuth(l2Tx.ToEthAddr)
  379. if err != nil {
  380. // not found, l2Tx will not be added in the selection
  381. return nil, nil, nil, tracerr.Wrap(fmt.Errorf("invalid L2Tx: ToIdx not found in StateDB, neither ToEthAddr found in AccountCreationAuths L2DB. ToIdx: %d, ToEthAddr: %s",
  382. l2Tx.ToIdx, l2Tx.ToEthAddr.Hex()))
  383. }
  384. if accAuth.BJJ != l2Tx.ToBJJ {
  385. // if AccountCreationAuth.BJJ is not the same
  386. // than in the tx, tx is not accepted
  387. return nil, nil, nil, tracerr.Wrap(fmt.Errorf("invalid L2Tx: ToIdx not found in StateDB, neither ToEthAddr & ToBJJ found in AccountCreationAuths L2DB. ToIdx: %d, ToEthAddr: %s, ToBJJ: %s",
  388. l2Tx.ToIdx, l2Tx.ToEthAddr.Hex(), l2Tx.ToBJJ.String()))
  389. }
  390. } else {
  391. // case: ToBJJ==0:
  392. // if idx exist for EthAddr use it
  393. _, err := txsel.localAccountsDB.GetIdxByEthAddr(l2Tx.ToEthAddr, l2Tx.TokenID)
  394. if err == nil {
  395. // account for ToEthAddr already exist,
  396. // there is no need to create a new one.
  397. // tx valid, StateDB will use the ToIdx==0 to define the AuxToIdx
  398. return &l2Tx, nil, nil, nil
  399. }
  400. // if not, check if AccountCreationAuth exist for that ToEthAddr
  401. accAuth, err = txsel.l2db.GetAccountCreationAuth(l2Tx.ToEthAddr)
  402. if err != nil {
  403. // not found, l2Tx will not be added in the selection
  404. return nil, nil, nil, tracerr.Wrap(fmt.Errorf("invalid L2Tx: ToIdx not found in StateDB, neither ToEthAddr found in AccountCreationAuths L2DB. ToIdx: %d, ToEthAddr: %s",
  405. l2Tx.ToIdx, l2Tx.ToEthAddr))
  406. }
  407. }
  408. // create L1CoordinatorTx for the accountCreation
  409. l1CoordinatorTx = &common.L1Tx{
  410. Position: positionL1,
  411. UserOrigin: false,
  412. FromEthAddr: accAuth.EthAddr,
  413. FromBJJ: accAuth.BJJ,
  414. TokenID: l2Tx.TokenID,
  415. Amount: big.NewInt(0),
  416. DepositAmount: big.NewInt(0),
  417. Type: common.TxTypeCreateAccountDeposit,
  418. }
  419. } else if bytes.Equal(l2Tx.ToEthAddr.Bytes(), common.FFAddr.Bytes()) &&
  420. l2Tx.ToBJJ != common.EmptyBJJComp {
  421. // if idx exist for EthAddr&BJJ use it
  422. _, err := txsel.localAccountsDB.GetIdxByEthAddrBJJ(l2Tx.ToEthAddr, l2Tx.ToBJJ,
  423. l2Tx.TokenID)
  424. if err == nil {
  425. // account for ToEthAddr&ToBJJ already exist, (where ToEthAddr==0xff)
  426. // there is no need to create a new one.
  427. // tx valid, StateDB will use the ToIdx==0 to define the AuxToIdx
  428. return &l2Tx, nil, nil, nil
  429. }
  430. // if idx don't exist for EthAddr&BJJ, coordinator can create a
  431. // new account without L1Authorization, as ToEthAddr==0xff
  432. // create L1CoordinatorTx for the accountCreation
  433. l1CoordinatorTx = &common.L1Tx{
  434. Position: positionL1,
  435. UserOrigin: false,
  436. FromEthAddr: l2Tx.ToEthAddr,
  437. FromBJJ: l2Tx.ToBJJ,
  438. TokenID: l2Tx.TokenID,
  439. Amount: big.NewInt(0),
  440. DepositAmount: big.NewInt(0),
  441. Type: common.TxTypeCreateAccountDeposit,
  442. }
  443. }
  444. if len(l1CoordinatorTxs) >= int(selectionConfig.MaxL1UserTxs)-nL1UserTxs {
  445. // L2Tx discarded
  446. return nil, nil, nil, tracerr.Wrap(fmt.Errorf("L2Tx discarded due not slots for L1CoordinatorTx to create a new account for receiver of L2Tx"))
  447. }
  448. return &l2Tx, l1CoordinatorTx, accAuth, nil
  449. }
  450. func checkAlreadyPendingToCreate(l1CoordinatorTxs []common.L1Tx, tokenID common.TokenID,
  451. addr ethCommon.Address, bjj babyjub.PublicKeyComp) bool {
  452. for i := 0; i < len(l1CoordinatorTxs); i++ {
  453. if bytes.Equal(l1CoordinatorTxs[i].FromEthAddr.Bytes(), addr.Bytes()) &&
  454. l1CoordinatorTxs[i].TokenID == tokenID &&
  455. l1CoordinatorTxs[i].FromBJJ == bjj {
  456. return true
  457. }
  458. }
  459. return false
  460. }
  461. // getL2Profitable returns the profitable selection of L2Txssorted by Nonce
  462. func (txsel *TxSelector) getL2Profitable(l2Txs []common.PoolL2Tx, max uint32) []common.PoolL2Tx {
  463. sort.Sort(txs(l2Txs))
  464. if len(l2Txs) < int(max) {
  465. return l2Txs
  466. }
  467. l2Txs = l2Txs[:max]
  468. // sort l2Txs by Nonce. This can be done in many different ways, what
  469. // is needed is to output the l2Txs where the Nonce of l2Txs for each
  470. // Account is sorted, but the l2Txs can not be grouped by sender Account
  471. // neither by Fee. This is because later on the Nonces will need to be
  472. // sequential for the zkproof generation.
  473. sort.SliceStable(l2Txs, func(i, j int) bool {
  474. return l2Txs[i].Nonce < l2Txs[j].Nonce
  475. })
  476. return l2Txs
  477. }