mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 09:37:38 +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)
|
||
|
}
|