Update treasury address & testnet fork block

This commit is contained in:
Shane Bammel 2023-01-26 13:34:26 -06:00
parent 40db66c21c
commit c7bc97353b

View File

@ -64,7 +64,7 @@ var (
TerminalTotalDifficulty: PulseChainTerminalTotalDifficulty,
TerminalTotalDifficultyPassed: true,
Ethash: new(EthashConfig),
PrimordialPulseBlock: big.NewInt(15_700_000), // TODO: UPDATE FORK BLOCK
PrimordialPulseBlock: big.NewInt(16_492_700),
Treasury: testnetTreasury(),
}
)
@ -74,7 +74,7 @@ func testnetTreasury() *Treasury {
pulseChainTestnetTreasuryBalance.UnmarshalText([]byte("0xC9F2C9CD04674EDEA40000000"))
return &Treasury{
Addr: "0xceB59257450820132aB274ED61C49E5FD96E8868",
Addr: "0xA592ED65885bcbCeb30442F4902a0D1Cf3AcB8fC",
Balance: &pulseChainTestnetTreasuryBalance,
}
}