mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 10:22:23 +00:00
eth/catalyst: fix pr comments
This commit is contained in:
parent
1eb342e30a
commit
16fad83071
3 changed files with 25 additions and 20 deletions
|
|
@ -52,7 +52,7 @@ type withdrawalQueue struct {
|
|||
type newWithdrawalsEvent struct{ Withdrawals types.Withdrawals }
|
||||
|
||||
// add queues a withdrawal for future inclusion.
|
||||
func (w *withdrawalQueue) Add(withdrawal *types.Withdrawal) error {
|
||||
func (w *withdrawalQueue) add(withdrawal *types.Withdrawal) error {
|
||||
w.mu.Lock()
|
||||
defer w.mu.Unlock()
|
||||
|
||||
|
|
@ -63,7 +63,7 @@ func (w *withdrawalQueue) Add(withdrawal *types.Withdrawal) error {
|
|||
}
|
||||
|
||||
// pop dequeues the specified number of withdrawals from the queue.
|
||||
func (w *withdrawalQueue) Pop(count int) types.Withdrawals {
|
||||
func (w *withdrawalQueue) pop(count int) types.Withdrawals {
|
||||
w.mu.Lock()
|
||||
defer w.mu.Unlock()
|
||||
|
||||
|
|
@ -76,7 +76,7 @@ func (w *withdrawalQueue) Pop(count int) types.Withdrawals {
|
|||
|
||||
// subscribe allows a listener to be updated when new withdrawals are added to
|
||||
// the queue.
|
||||
func (w *withdrawalQueue) Subscribe(ch chan<- newWithdrawalsEvent) event.Subscription {
|
||||
func (w *withdrawalQueue) subscribe(ch chan<- newWithdrawalsEvent) event.Subscription {
|
||||
sub := w.feed.Subscribe(ch)
|
||||
return w.subs.Track(sub)
|
||||
}
|
||||
|
|
@ -164,7 +164,7 @@ func (c *SimulatedBeacon) sealBlock(withdrawals []*types.Withdrawal, timestamp u
|
|||
c.setCurrentState(header.Hash(), *finalizedHash)
|
||||
}
|
||||
|
||||
// Because transaction insertion, block insertion and block production will
|
||||
// Because transaction insertion, block insertion, and block production will
|
||||
// happen without any timing delay between them in simulator mode and the
|
||||
// transaction pool will be running its internal reset operation on a
|
||||
// background thread, flaky executions can happen. To avoid the racey
|
||||
|
|
@ -242,7 +242,7 @@ func (c *SimulatedBeacon) loop() {
|
|||
case <-c.shutdownCh:
|
||||
return
|
||||
case <-timer.C:
|
||||
if err := c.sealBlock(c.withdrawals.Pop(10), uint64(time.Now().Unix())); err != nil {
|
||||
if err := c.sealBlock(c.withdrawals.pop(10), uint64(time.Now().Unix())); err != nil {
|
||||
log.Warn("Error performing sealing work", "err", err)
|
||||
} else {
|
||||
timer.Reset(time.Second * time.Duration(c.period))
|
||||
|
|
@ -278,7 +278,7 @@ func (c *SimulatedBeacon) setCurrentState(headHash, finalizedHash common.Hash) {
|
|||
|
||||
// Commit seals a block on demand.
|
||||
func (c *SimulatedBeacon) Commit() common.Hash {
|
||||
withdrawals := c.withdrawals.Pop(10)
|
||||
withdrawals := c.withdrawals.pop(10)
|
||||
if err := c.sealBlock(withdrawals, uint64(time.Now().Unix())); err != nil {
|
||||
log.Warn("Error performing sealing work", "err", err)
|
||||
}
|
||||
|
|
@ -319,18 +319,14 @@ func (c *SimulatedBeacon) AdjustTime(adjustment time.Duration) error {
|
|||
if parent == nil {
|
||||
return errors.New("parent not found")
|
||||
}
|
||||
withdrawals := c.withdrawals.Pop(10)
|
||||
withdrawals := c.withdrawals.pop(10)
|
||||
return c.sealBlock(withdrawals, parent.Time+uint64(adjustment/time.Second))
|
||||
}
|
||||
|
||||
// RegisterSimulatedBeaconAPIs registers the simulated beacon's API with the
|
||||
// stack.
|
||||
func RegisterSimulatedBeaconAPIs(stack *node.Node, sim *SimulatedBeacon) {
|
||||
api := &simulatedBeaconAPI{sim: sim, doCommit: make(chan struct{}, 1)}
|
||||
if sim.period == 0 {
|
||||
// mine on demand if period is set to 0
|
||||
go api.loop()
|
||||
}
|
||||
api := newSimulatedBeaconAPI(sim)
|
||||
stack.RegisterAPIs([]rpc.API{
|
||||
{
|
||||
Namespace: "dev",
|
||||
|
|
|
|||
|
|
@ -30,6 +30,18 @@ type simulatedBeaconAPI struct {
|
|||
doCommit chan struct{}
|
||||
}
|
||||
|
||||
// newSimulatedBeaconAPI returns an instance of simulatedBeaconAPI with a
|
||||
// buffered commit channel. If period is zero, it starts a goroutine to handle
|
||||
// new tx events.
|
||||
func newSimulatedBeaconAPI(sim *SimulatedBeacon) *simulatedBeaconAPI {
|
||||
api := &simulatedBeaconAPI{sim: sim, doCommit: make(chan struct{}, 1)}
|
||||
if sim.period == 0 {
|
||||
// mine on demand if period is set to 0
|
||||
go api.loop()
|
||||
}
|
||||
return api
|
||||
}
|
||||
|
||||
// loop is the main loop for the API when it's running in period = 0 mode. It
|
||||
// ensures that block production is triggered as soon as a new withdrawal or
|
||||
// transaction is received.
|
||||
|
|
@ -38,7 +50,7 @@ func (a *simulatedBeaconAPI) loop() {
|
|||
newTxs = make(chan core.NewTxsEvent)
|
||||
newWxs = make(chan newWithdrawalsEvent)
|
||||
newTxsSub = a.sim.eth.TxPool().SubscribeTransactions(newTxs, true)
|
||||
newWxsSub = a.sim.withdrawals.Subscribe(newWxs)
|
||||
newWxsSub = a.sim.withdrawals.subscribe(newWxs)
|
||||
)
|
||||
defer newTxsSub.Unsubscribe()
|
||||
defer newWxsSub.Unsubscribe()
|
||||
|
|
@ -85,7 +97,7 @@ func (a *simulatedBeaconAPI) worker() {
|
|||
|
||||
// AddWithdrawal adds a withdrawal to the pending queue.
|
||||
func (a *simulatedBeaconAPI) AddWithdrawal(ctx context.Context, withdrawal *types.Withdrawal) error {
|
||||
return a.sim.withdrawals.Add(withdrawal)
|
||||
return a.sim.withdrawals.add(withdrawal)
|
||||
}
|
||||
|
||||
// SetFeeRecipient sets the fee recipient for block building purposes.
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ func TestSimulatedBeaconSendWithdrawals(t *testing.T) {
|
|||
// generate some withdrawals
|
||||
for i := 0; i < 20; i++ {
|
||||
withdrawals = append(withdrawals, types.Withdrawal{Index: uint64(i)})
|
||||
if err := mock.withdrawals.Add(&withdrawals[i]); err != nil {
|
||||
if err := mock.withdrawals.add(&withdrawals[i]); err != nil {
|
||||
t.Fatal("addWithdrawal failed", err)
|
||||
}
|
||||
}
|
||||
|
|
@ -152,6 +152,7 @@ func TestOnDemandSpam(t *testing.T) {
|
|||
gasLimit uint64 = 10_000_000
|
||||
genesis = core.DeveloperGenesisBlock(gasLimit, &testAddr)
|
||||
node, eth, mock = startSimulatedBeaconEthService(t, genesis, 0)
|
||||
_ = newSimulatedBeaconAPI(mock)
|
||||
signer = types.LatestSigner(eth.BlockChain().Config())
|
||||
chainHeadCh = make(chan core.ChainHeadEvent, 100)
|
||||
sub = eth.BlockChain().SubscribeChainHeadEvent(chainHeadCh)
|
||||
|
|
@ -159,14 +160,10 @@ func TestOnDemandSpam(t *testing.T) {
|
|||
defer node.Close()
|
||||
defer sub.Unsubscribe()
|
||||
|
||||
// start simulated beacon
|
||||
api := &simulatedBeaconAPI{sim: mock, doCommit: make(chan struct{}, 1)}
|
||||
go api.loop()
|
||||
|
||||
// generate some withdrawals
|
||||
for i := 0; i < 20; i++ {
|
||||
withdrawals = append(withdrawals, types.Withdrawal{Index: uint64(i)})
|
||||
if err := mock.withdrawals.Add(&withdrawals[i]); err != nil {
|
||||
if err := mock.withdrawals.add(&withdrawals[i]); err != nil {
|
||||
t.Fatal("addWithdrawal failed", err)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue