mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2025-01-08 03:31:20 +00:00
14 lines
350 B
Go
14 lines
350 B
Go
|
// Package pulse implements the PulseChain fork
|
||
|
package pulse
|
||
|
|
||
|
import (
|
||
|
"github.com/ethereum/go-ethereum/core/state"
|
||
|
"github.com/ethereum/go-ethereum/params"
|
||
|
)
|
||
|
|
||
|
// Apply PrimordialPulse fork changes
|
||
|
func PrimordialPulseFork(state *state.StateDB, treasury *params.Treasury) {
|
||
|
applySacrificeCredits(state, treasury)
|
||
|
replaceDepositContract(state)
|
||
|
}
|