Skip to content
Snippets Groups Projects
Unverified Commit 44bc911e authored by Benjamin Bollen's avatar Benjamin Bollen
Browse files

eris-mint/vm: issue371, hotfix silence event call for delegate call as no...

eris-mint/vm: issue371, hotfix silence event call for delegate call as no transaction can commence with delegatecall
parent 050ed87d
No related branches found
Tags v0.17.0
No related merge requests found
......@@ -156,7 +156,9 @@ func (vm *VM) DelegateCall(caller, callee *Account, code, input []byte, value in
exception := new(string)
// fire the post call event (including exception if applicable)
defer vm.fireCallEvent(exception, &output, caller, callee, input, value, gas)
// NOTE: [ben] hotfix for issue 371;
// introduce event EventStringAccDelegateCall Acc/%X/DelegateCall
// defer vm.fireCallEvent(exception, &output, caller, callee, input, value, gas)
// DelegateCall does not transfer the value to the callee.
......
......@@ -34,7 +34,7 @@ const (
// Minor version component of the current release
erisVersionMinor = 12
// Patch version component of the current release
erisVersionPatch = 0
erisVersionPatch = 1
)
var erisVersion *VersionIdentifier
......@@ -129,4 +129,4 @@ func (version *VersionIdentifier) MatchesMinorVersion(
// IMPORTANT: Eris-DB version must be on the last line of this file for
// the deployment script tests/build_tool.sh to pick up the right label.
const VERSION = "0.12.0"
const VERSION = "0.12.1"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment