From 44bc911e525b6bbfbbb9379d6bde54bf3c350c19 Mon Sep 17 00:00:00 2001 From: Benjamin Bollen <ben@monax.io> Date: Fri, 11 Nov 2016 01:11:15 +0100 Subject: [PATCH] eris-mint/vm: issue371, hotfix silence event call for delegate call as no transaction can commence with delegatecall --- manager/eris-mint/evm/vm.go | 4 +++- version/version.go | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/manager/eris-mint/evm/vm.go b/manager/eris-mint/evm/vm.go index a3f4d51e..32b7b4fa 100644 --- a/manager/eris-mint/evm/vm.go +++ b/manager/eris-mint/evm/vm.go @@ -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. diff --git a/version/version.go b/version/version.go index a1778f43..36e4f305 100644 --- a/version/version.go +++ b/version/version.go @@ -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" -- GitLab