@@ -541,11 +541,12 @@ type TxWithMinerFee struct {
541
541
tx * Transaction
542
542
minerFee * big.Int // in CELO
543
543
}
544
+ type ToCELOFn func (amount * big.Int , feeCurrency * common.Address ) * big.Int
544
545
545
546
// NewTxWithMinerFee creates a wrapped transaction, calculating the effective
546
547
// miner gasTipCap if a base fee is provided. The MinerFee is converted to CELO.
547
548
// Returns error in case of a negative effective miner gasTipCap.
548
- func NewTxWithMinerFee (tx * Transaction , baseFeeFn func (feeCurrency * common.Address ) * big.Int , toCELO func ( amount * big. Int , feeCurrency * common. Address ) * big. Int ) (* TxWithMinerFee , error ) {
549
+ func NewTxWithMinerFee (tx * Transaction , baseFeeFn func (feeCurrency * common.Address ) * big.Int , toCELO ToCELOFn ) (* TxWithMinerFee , error ) {
549
550
minerFee , err := tx .EffectiveGasTip (baseFeeFn (tx .FeeCurrency ()))
550
551
if err != nil {
551
552
return nil , err
@@ -588,11 +589,11 @@ func (s *TxByPriceAndTime) Pop() interface{} {
588
589
// transactions in a profit-maximizing sorted order, while supporting removing
589
590
// entire batches of transactions for non-executable accounts.
590
591
type TransactionsByPriceAndNonce struct {
591
- txs map [common.Address ]Transactions // Per account nonce-sorted list of transactions
592
- heads TxByPriceAndTime // Next transaction for each unique account (price heap)
593
- signer Signer // Signer for the set of transactions
594
- baseFeeFn func (feeCurrency * common.Address ) * big.Int // Function to get the basefee for the specified feecurrency.
595
- toCELO func ( amount * big. Int , feeCurrency * common. Address ) * big. Int // Current exchange rate to CELO
592
+ txs map [common.Address ]Transactions // Per account nonce-sorted list of transactions
593
+ heads TxByPriceAndTime // Next transaction for each unique account (price heap)
594
+ signer Signer // Signer for the set of transactions
595
+ baseFeeFn func (feeCurrency * common.Address ) * big.Int // Function to get the basefee for the specified feecurrency.
596
+ toCELO ToCELOFn // Current exchange rate to CELO
596
597
}
597
598
598
599
// NewTransactionsByPriceAndNonce creates a transaction set that can retrieve
@@ -601,7 +602,7 @@ type TransactionsByPriceAndNonce struct {
601
602
// Note, the input map is reowned so the caller should not interact any more with
602
603
// if after providing it to the constructor.
603
604
// Note: txCmpFunc should handle the basefee
604
- func NewTransactionsByPriceAndNonce (signer Signer , txs map [common.Address ]Transactions , baseFeeFn func (feeCurrency * common.Address ) * big.Int , toCELO func ( amount * big. Int , feeCurrency * common. Address ) * big. Int ) * TransactionsByPriceAndNonce {
605
+ func NewTransactionsByPriceAndNonce (signer Signer , txs map [common.Address ]Transactions , baseFeeFn func (feeCurrency * common.Address ) * big.Int , toCELO ToCELOFn ) * TransactionsByPriceAndNonce {
605
606
// Initialize a price and received time based heap with the head transactions
606
607
heads := make (TxByPriceAndTime , 0 , len (txs ))
607
608
for from , accTxs := range txs {
0 commit comments