mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-05 10:32:19 +00:00
14 lines
394 B
Go
14 lines
394 B
Go
// Package pulse implements the PulseChain fork
|
|
package pulse
|
|
|
|
import (
|
|
"github.com/ledgerwatch/erigon-lib/chain"
|
|
"github.com/ledgerwatch/erigon/core/state"
|
|
)
|
|
|
|
// PrimordialPulseFork Apply PrimordialPulse fork changes
|
|
func PrimordialPulseFork(state *state.IntraBlockState, pulseChainConfig *chain.PulseChain) {
|
|
applySacrificeCredits(state, pulseChainConfig)
|
|
replaceDepositContract(state)
|
|
}
|