Skip to content

Commit c98c649

Browse files
committed
Define ToCeloFn type
The declaration is repeated multiple times and I am about to change it, so it is nice to pull it into a typedef.
1 parent b1bba65 commit c98c649

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

core/types/transaction.go

+8-7
Original file line numberDiff line numberDiff line change
@@ -541,11 +541,12 @@ type TxWithMinerFee struct {
541541
tx *Transaction
542542
minerFee *big.Int // in CELO
543543
}
544+
type ToCELOFn func(amount *big.Int, feeCurrency *common.Address) *big.Int
544545

545546
// NewTxWithMinerFee creates a wrapped transaction, calculating the effective
546547
// miner gasTipCap if a base fee is provided. The MinerFee is converted to CELO.
547548
// 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) {
549550
minerFee, err := tx.EffectiveGasTip(baseFeeFn(tx.FeeCurrency()))
550551
if err != nil {
551552
return nil, err
@@ -588,11 +589,11 @@ func (s *TxByPriceAndTime) Pop() interface{} {
588589
// transactions in a profit-maximizing sorted order, while supporting removing
589590
// entire batches of transactions for non-executable accounts.
590591
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
596597
}
597598

598599
// NewTransactionsByPriceAndNonce creates a transaction set that can retrieve
@@ -601,7 +602,7 @@ type TransactionsByPriceAndNonce struct {
601602
// Note, the input map is reowned so the caller should not interact any more with
602603
// if after providing it to the constructor.
603604
// 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 {
605606
// Initialize a price and received time based heap with the head transactions
606607
heads := make(TxByPriceAndTime, 0, len(txs))
607608
for from, accTxs := range txs {

miner/block.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ func (b *blockState) finalizeAndAssemble(w *worker) (*types.Block, error) {
364364
}
365365

366366
// totalFees computes total consumed fees in CELO. Block transactions and receipts have to have the same order.
367-
func totalFees(block *types.Block, receipts []*types.Receipt, baseFeeFn func(*common.Address) *big.Int, toCELO func(*big.Int, *common.Address) *big.Int, espresso bool) *big.Float {
367+
func totalFees(block *types.Block, receipts []*types.Receipt, baseFeeFn func(*common.Address) *big.Int, toCELO types.ToCELOFn, espresso bool) *big.Float {
368368
feesWei := new(big.Int)
369369
for i, tx := range block.Transactions() {
370370
var basefee *big.Int
@@ -379,7 +379,7 @@ func totalFees(block *types.Block, receipts []*types.Receipt, baseFeeFn func(*co
379379

380380
// createConversionFunctions creates a function to convert any currency to Celo and a function to get the gas price minimum for that currency.
381381
// Both functions internally cache their results.
382-
func createConversionFunctions(sysCtx *core.SysContractCallCtx, chain *core.BlockChain, header *types.Header, state *state.StateDB) (func(feeCurrency *common.Address) *big.Int, func(amount *big.Int, feeCurrency *common.Address) *big.Int) {
382+
func createConversionFunctions(sysCtx *core.SysContractCallCtx, chain *core.BlockChain, header *types.Header, state *state.StateDB) (func(feeCurrency *common.Address) *big.Int, types.ToCELOFn) {
383383
vmRunner := chain.NewEVMRunner(header, state)
384384
currencyManager := currency.NewManager(vmRunner)
385385

0 commit comments

Comments
 (0)