Skip to content

Commit

Permalink
Changed st.evm.Call to st.evm.DaemonCall, adjusted hard fork time to …
Browse files Browse the repository at this point in the history
…March 1st, and bumped version (#10)
  • Loading branch information
sprwn authored Feb 9, 2023
1 parent 9351b98 commit 49bc247
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion avalanchego/version/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var (
Current = &Semantic{
Major: 1,
Minor: 7,
Patch: 1802,
Patch: 1803,
}
CurrentApp = &Application{
Major: Current.Major,
Expand Down
2 changes: 1 addition & 1 deletion coreth/core/governance_settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var (
costwoInitialAirdropChangeActivationTime = big.NewInt(time.Date(2022, time.October, 27, 20, 0, 0, 0, time.UTC).Unix())
localFlareInitialAirdropChangeActivationTime = big.NewInt(time.Date(2022, time.January, 1, 0, 0, 0, 0, time.UTC).Unix())

flareDistributionChangeActivationTime = big.NewInt(time.Date(2023, time.February, 16, 15, 0, 0, 0, time.UTC).Unix())
flareDistributionChangeActivationTime = big.NewInt(time.Date(2023, time.March, 1, 15, 0, 0, 0, time.UTC).Unix())
costwoDistributionChangeActivationTime = big.NewInt(time.Date(2023, time.January, 26, 15, 0, 0, 0, time.UTC).Unix())
localFlareDistributionChangeActivationTime = big.NewInt(time.Date(2023, time.January, 1, 0, 0, 0, 0, time.UTC).Unix())
)
Expand Down
2 changes: 1 addition & 1 deletion coreth/core/state_connector.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ func GetLocalAttestors() []common.Address {
}

func (st *StateTransition) GetAttestation(attestor common.Address, instructions []byte) (string, error) {
merkleRootHash, _, err := st.evm.Call(vm.AccountRef(attestor), st.to(), instructions, params.TxGas, big.NewInt(0))
_, merkleRootHash, _, err := st.evm.DaemonCall(vm.AccountRef(attestor), st.to(), instructions, params.TxGas)
return hex.EncodeToString(merkleRootHash), err
}

Expand Down

0 comments on commit 49bc247

Please sign in to comment.