2021-06-04 07:32:35 +00:00
|
|
|
// Copyright 2021 The go-ethereum Authors
|
2018-08-23 11:03:13 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2021-06-04 07:32:35 +00:00
|
|
|
// This file contains a miner stress test for eip 1559.
|
2018-08-23 11:03:13 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/ecdsa"
|
|
|
|
"io/ioutil"
|
|
|
|
"math/big"
|
|
|
|
"math/rand"
|
|
|
|
"os"
|
2021-10-09 14:39:53 +00:00
|
|
|
"os/signal"
|
2018-08-23 11:03:13 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/common/fdlimit"
|
2021-06-04 07:32:35 +00:00
|
|
|
"github.com/ethereum/go-ethereum/consensus/ethash"
|
2018-08-23 11:03:13 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
|
|
"github.com/ethereum/go-ethereum/eth"
|
|
|
|
"github.com/ethereum/go-ethereum/eth/downloader"
|
2021-05-21 18:52:51 +00:00
|
|
|
"github.com/ethereum/go-ethereum/eth/ethconfig"
|
2018-08-23 11:03:13 +00:00
|
|
|
"github.com/ethereum/go-ethereum/log"
|
2019-12-10 08:26:07 +00:00
|
|
|
"github.com/ethereum/go-ethereum/miner"
|
2018-08-23 11:03:13 +00:00
|
|
|
"github.com/ethereum/go-ethereum/node"
|
|
|
|
"github.com/ethereum/go-ethereum/p2p"
|
2018-11-07 08:55:56 +00:00
|
|
|
"github.com/ethereum/go-ethereum/p2p/enode"
|
2018-08-23 11:03:13 +00:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
|
|
|
)
|
|
|
|
|
2021-06-04 07:32:35 +00:00
|
|
|
var (
|
|
|
|
londonBlock = big.NewInt(30) // Predefined london fork block for activating eip 1559.
|
|
|
|
)
|
|
|
|
|
2018-08-23 11:03:13 +00:00
|
|
|
func main() {
|
|
|
|
log.Root().SetHandler(log.LvlFilterHandler(log.LvlInfo, log.StreamHandler(os.Stderr, log.TerminalFormat(true))))
|
|
|
|
fdlimit.Raise(2048)
|
|
|
|
|
|
|
|
// Generate a batch of accounts to seal and fund with
|
|
|
|
faucets := make([]*ecdsa.PrivateKey, 128)
|
|
|
|
for i := 0; i < len(faucets); i++ {
|
|
|
|
faucets[i], _ = crypto.GenerateKey()
|
|
|
|
}
|
2021-06-04 07:32:35 +00:00
|
|
|
// Pre-generate the ethash mining DAG so we don't race
|
2021-10-09 14:39:53 +00:00
|
|
|
ethash.MakeDataset(1, ethconfig.Defaults.Ethash.DatasetDir)
|
2021-06-04 07:32:35 +00:00
|
|
|
|
|
|
|
// Create an Ethash network based off of the Ropsten config
|
|
|
|
genesis := makeGenesis(faucets)
|
2018-08-23 11:03:13 +00:00
|
|
|
|
2021-10-09 14:39:53 +00:00
|
|
|
// Handle interrupts.
|
|
|
|
interruptCh := make(chan os.Signal, 5)
|
|
|
|
signal.Notify(interruptCh, os.Interrupt)
|
|
|
|
|
2018-08-23 11:03:13 +00:00
|
|
|
var (
|
2021-10-09 14:39:53 +00:00
|
|
|
stacks []*node.Node
|
2020-08-03 17:40:46 +00:00
|
|
|
nodes []*eth.Ethereum
|
2018-11-07 08:55:56 +00:00
|
|
|
enodes []*enode.Node
|
2018-08-23 11:03:13 +00:00
|
|
|
)
|
2021-06-04 07:32:35 +00:00
|
|
|
for i := 0; i < 4; i++ {
|
2018-08-23 11:03:13 +00:00
|
|
|
// Start the node and wait until it's up
|
2021-06-04 07:32:35 +00:00
|
|
|
stack, ethBackend, err := makeMiner(genesis)
|
2018-08-23 11:03:13 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-08-03 17:40:46 +00:00
|
|
|
defer stack.Close()
|
2018-08-23 11:03:13 +00:00
|
|
|
|
2020-08-03 17:40:46 +00:00
|
|
|
for stack.Server().NodeInfo().Ports.Listener == 0 {
|
2018-08-23 11:03:13 +00:00
|
|
|
time.Sleep(250 * time.Millisecond)
|
|
|
|
}
|
2020-08-03 17:40:46 +00:00
|
|
|
// Connect the node to all the previous ones
|
2018-11-07 08:55:56 +00:00
|
|
|
for _, n := range enodes {
|
2020-08-03 17:40:46 +00:00
|
|
|
stack.Server().AddPeer(n)
|
2018-08-23 11:03:13 +00:00
|
|
|
}
|
2020-08-03 17:40:46 +00:00
|
|
|
// Start tracking the node and its enode
|
|
|
|
nodes = append(nodes, ethBackend)
|
|
|
|
enodes = append(enodes, stack.Server().Self())
|
2018-08-23 11:03:13 +00:00
|
|
|
}
|
|
|
|
|
2021-06-04 07:32:35 +00:00
|
|
|
// Iterate over all the nodes and start mining
|
2020-08-03 17:40:46 +00:00
|
|
|
time.Sleep(3 * time.Second)
|
2018-08-23 11:03:13 +00:00
|
|
|
for _, node := range nodes {
|
2020-08-03 17:40:46 +00:00
|
|
|
if err := node.StartMining(1); err != nil {
|
2018-08-23 11:03:13 +00:00
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
time.Sleep(3 * time.Second)
|
|
|
|
|
2021-06-04 07:32:35 +00:00
|
|
|
// Start injecting transactions from the faucets like crazy
|
|
|
|
var (
|
|
|
|
nonces = make([]uint64, len(faucets))
|
|
|
|
|
|
|
|
// The signer activates the 1559 features even before the fork,
|
|
|
|
// so the new 1559 txs can be created with this signer.
|
|
|
|
signer = types.LatestSignerForChainID(genesis.Config.ChainID)
|
|
|
|
)
|
2018-08-23 11:03:13 +00:00
|
|
|
for {
|
2021-10-09 14:39:53 +00:00
|
|
|
// Stop when interrupted.
|
|
|
|
select {
|
|
|
|
case <-interruptCh:
|
|
|
|
for _, node := range stacks {
|
|
|
|
node.Close()
|
|
|
|
}
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
2021-06-04 07:32:35 +00:00
|
|
|
// Pick a random mining node
|
2018-08-23 11:03:13 +00:00
|
|
|
index := rand.Intn(len(faucets))
|
2020-08-03 17:40:46 +00:00
|
|
|
backend := nodes[index%len(nodes)]
|
2018-08-23 11:03:13 +00:00
|
|
|
|
2021-06-04 07:32:35 +00:00
|
|
|
headHeader := backend.BlockChain().CurrentHeader()
|
|
|
|
baseFee := headHeader.BaseFee
|
|
|
|
|
|
|
|
// Create a self transaction and inject into the pool. The legacy
|
|
|
|
// and 1559 transactions can all be created by random even if the
|
|
|
|
// fork is not happened.
|
|
|
|
tx := makeTransaction(nonces[index], faucets[index], signer, baseFee)
|
2020-08-03 17:40:46 +00:00
|
|
|
if err := backend.TxPool().AddLocal(tx); err != nil {
|
2021-06-04 07:32:35 +00:00
|
|
|
continue
|
2018-08-23 11:03:13 +00:00
|
|
|
}
|
|
|
|
nonces[index]++
|
|
|
|
|
|
|
|
// Wait if we're too saturated
|
2021-06-04 07:32:35 +00:00
|
|
|
if pend, _ := backend.TxPool().Stats(); pend > 4192 {
|
2018-08-23 11:03:13 +00:00
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
}
|
2021-06-04 07:32:35 +00:00
|
|
|
|
|
|
|
// Wait if the basefee is raised too fast
|
|
|
|
if baseFee != nil && baseFee.Cmp(new(big.Int).Mul(big.NewInt(100), big.NewInt(params.GWei))) > 0 {
|
|
|
|
time.Sleep(500 * time.Millisecond)
|
|
|
|
}
|
2018-08-23 11:03:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-04 07:32:35 +00:00
|
|
|
func makeTransaction(nonce uint64, privKey *ecdsa.PrivateKey, signer types.Signer, baseFee *big.Int) *types.Transaction {
|
|
|
|
// Generate legacy transaction
|
|
|
|
if rand.Intn(2) == 0 {
|
|
|
|
tx, err := types.SignTx(types.NewTransaction(nonce, crypto.PubkeyToAddress(privKey.PublicKey), new(big.Int), 21000, big.NewInt(100000000000+rand.Int63n(65536)), nil), signer, privKey)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return tx
|
|
|
|
}
|
|
|
|
// Generate eip 1559 transaction
|
|
|
|
recipient := crypto.PubkeyToAddress(privKey.PublicKey)
|
|
|
|
|
|
|
|
// Feecap and feetip are limited to 32 bytes. Offer a sightly
|
|
|
|
// larger buffer for creating both valid and invalid transactions.
|
|
|
|
var buf = make([]byte, 32+5)
|
|
|
|
rand.Read(buf)
|
2021-06-08 10:05:41 +00:00
|
|
|
gasTipCap := new(big.Int).SetBytes(buf)
|
2021-06-04 07:32:35 +00:00
|
|
|
|
|
|
|
// If the given base fee is nil(the 1559 is still not available),
|
|
|
|
// generate a fake base fee in order to create 1559 tx forcibly.
|
|
|
|
if baseFee == nil {
|
|
|
|
baseFee = new(big.Int).SetInt64(int64(rand.Int31()))
|
|
|
|
}
|
|
|
|
// Generate the feecap, 75% valid feecap and 25% unguaranted.
|
2021-06-08 10:05:41 +00:00
|
|
|
var gasFeeCap *big.Int
|
2021-06-04 07:32:35 +00:00
|
|
|
if rand.Intn(4) == 0 {
|
|
|
|
rand.Read(buf)
|
2021-06-08 10:05:41 +00:00
|
|
|
gasFeeCap = new(big.Int).SetBytes(buf)
|
2021-06-04 07:32:35 +00:00
|
|
|
} else {
|
2021-06-08 10:05:41 +00:00
|
|
|
gasFeeCap = new(big.Int).Add(baseFee, gasTipCap)
|
2021-06-04 07:32:35 +00:00
|
|
|
}
|
|
|
|
return types.MustSignNewTx(privKey, signer, &types.DynamicFeeTx{
|
|
|
|
ChainID: signer.ChainID(),
|
|
|
|
Nonce: nonce,
|
2021-06-08 10:05:41 +00:00
|
|
|
GasTipCap: gasTipCap,
|
|
|
|
GasFeeCap: gasFeeCap,
|
2021-06-04 07:32:35 +00:00
|
|
|
Gas: 21000,
|
|
|
|
To: &recipient,
|
|
|
|
Value: big.NewInt(100),
|
|
|
|
Data: nil,
|
|
|
|
AccessList: nil,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// makeGenesis creates a custom Ethash genesis block based on some pre-defined
|
|
|
|
// faucet accounts.
|
|
|
|
func makeGenesis(faucets []*ecdsa.PrivateKey) *core.Genesis {
|
|
|
|
genesis := core.DefaultRopstenGenesisBlock()
|
|
|
|
|
|
|
|
genesis.Config = params.AllEthashProtocolChanges
|
|
|
|
genesis.Config.LondonBlock = londonBlock
|
|
|
|
genesis.Difficulty = params.MinimumDifficulty
|
|
|
|
|
|
|
|
// Small gaslimit for easier basefee moving testing.
|
|
|
|
genesis.GasLimit = 8_000_000
|
2018-08-23 11:03:13 +00:00
|
|
|
|
|
|
|
genesis.Config.ChainID = big.NewInt(18)
|
|
|
|
genesis.Config.EIP150Hash = common.Hash{}
|
|
|
|
|
|
|
|
genesis.Alloc = core.GenesisAlloc{}
|
|
|
|
for _, faucet := range faucets {
|
|
|
|
genesis.Alloc[crypto.PubkeyToAddress(faucet.PublicKey)] = core.GenesisAccount{
|
|
|
|
Balance: new(big.Int).Exp(big.NewInt(2), big.NewInt(128), nil),
|
|
|
|
}
|
|
|
|
}
|
2021-06-04 07:32:35 +00:00
|
|
|
if londonBlock.Sign() == 0 {
|
|
|
|
log.Info("Enabled the eip 1559 by default")
|
|
|
|
} else {
|
|
|
|
log.Info("Registered the london fork", "number", londonBlock)
|
2018-08-23 11:03:13 +00:00
|
|
|
}
|
|
|
|
return genesis
|
|
|
|
}
|
|
|
|
|
2021-06-04 07:32:35 +00:00
|
|
|
func makeMiner(genesis *core.Genesis) (*node.Node, *eth.Ethereum, error) {
|
2018-08-23 11:03:13 +00:00
|
|
|
// Define the basic configurations for the Ethereum node
|
|
|
|
datadir, _ := ioutil.TempDir("", "")
|
|
|
|
|
|
|
|
config := &node.Config{
|
|
|
|
Name: "geth",
|
|
|
|
Version: params.Version,
|
|
|
|
DataDir: datadir,
|
|
|
|
P2P: p2p.Config{
|
|
|
|
ListenAddr: "0.0.0.0:0",
|
|
|
|
NoDiscovery: true,
|
|
|
|
MaxPeers: 25,
|
|
|
|
},
|
2021-06-04 07:32:35 +00:00
|
|
|
UseLightweightKDF: true,
|
2018-08-23 11:03:13 +00:00
|
|
|
}
|
2021-06-04 07:32:35 +00:00
|
|
|
// Create the node and configure a full Ethereum node on it
|
2018-08-23 11:03:13 +00:00
|
|
|
stack, err := node.New(config)
|
|
|
|
if err != nil {
|
2020-08-03 17:40:46 +00:00
|
|
|
return nil, nil, err
|
2018-08-23 11:03:13 +00:00
|
|
|
}
|
2021-02-05 12:51:15 +00:00
|
|
|
ethBackend, err := eth.New(stack, ðconfig.Config{
|
2020-08-03 17:40:46 +00:00
|
|
|
Genesis: genesis,
|
|
|
|
NetworkId: genesis.Config.ChainID.Uint64(),
|
|
|
|
SyncMode: downloader.FullSync,
|
|
|
|
DatabaseCache: 256,
|
|
|
|
DatabaseHandles: 256,
|
|
|
|
TxPool: core.DefaultTxPoolConfig,
|
2021-05-21 18:52:51 +00:00
|
|
|
GPO: ethconfig.Defaults.GPO,
|
2021-06-04 07:32:35 +00:00
|
|
|
Ethash: ethconfig.Defaults.Ethash,
|
2020-08-03 17:40:46 +00:00
|
|
|
Miner: miner.Config{
|
2021-10-09 14:39:53 +00:00
|
|
|
Etherbase: common.Address{1},
|
|
|
|
GasCeil: genesis.GasLimit * 11 / 10,
|
|
|
|
GasPrice: big.NewInt(1),
|
|
|
|
Recommit: time.Second,
|
2020-08-03 17:40:46 +00:00
|
|
|
},
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
2018-08-23 11:03:13 +00:00
|
|
|
}
|
2020-08-03 17:40:46 +00:00
|
|
|
err = stack.Start()
|
|
|
|
return stack, ethBackend, err
|
2018-08-23 11:03:13 +00:00
|
|
|
}
|