From 434edcc2ae0aa3d3661ed0a75cba7a549b877223 Mon Sep 17 00:00:00 2001 From: coffeepots Date: Thu, 18 Oct 2018 17:47:54 +0100 Subject: [PATCH] Fix incorrect message parameters (had sender and destination swapped) --- nimbus/vm/computation.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nimbus/vm/computation.nim b/nimbus/vm/computation.nim index a2b2e0776..68a25f385 100644 --- a/nimbus/vm/computation.nim +++ b/nimbus/vm/computation.nim @@ -78,8 +78,8 @@ proc prepareChildMessage*( result = newMessage( gas, c.msg.gasPrice, - c.msg.origin, to, + c.msg.origin, value, data, code,