Skip to content

Commit

Permalink
Merge branch 'firehose-v2' into release/bsc-1.1.x-fh2
Browse files Browse the repository at this point in the history
  • Loading branch information
Stéphane Duchesneau committed Oct 25, 2022
2 parents 72ad631 + d1cabca commit efc7aa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/vm/evm.go
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ func (evm *EVM) DelegateCall(caller ContractRef, addr common.Address, input []by

// It's a sure thing that caller is a Contract, it cannot be anything else, so we are safe
parent := caller.(*Contract)
evm.firehoseContext.RecordCallParams("DELEGATE", parent.CallerAddress, addr, parent.value, gas, input)
evm.firehoseContext.RecordCallParams("DELEGATE", parent.Address(), addr, parent.value, gas, input)
}

// Fail if we're trying to execute above the call depth limit
Expand Down
2 changes: 1 addition & 1 deletion params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const (
VersionMeta = "fh2" // Version metadata to append to the version string

FirehoseVersionMajor = 2
FirehoseVersionMinor = 0
FirehoseVersionMinor = 1
Variant = "bsc"
)

Expand Down

0 comments on commit efc7aa8

Please sign in to comment.