Commit 75fea187 authored by chriseth's avatar chriseth Committed by GitHub

Merge pull request #137 from ethereum/fixTxHash

Fix tx hash (VM mode)
parents a3b953ec e3434124
......@@ -43,7 +43,7 @@ web3VmProvider.prototype.releaseCurrentHash = function () {
web3VmProvider.prototype.txWillProcess = function (self, data) {
self.incr++
self.processingHash = this.web3.sha3([data.r, data.s, data.v, self.incr].join(''))
self.processingHash = util.hexConvert(data.hash())
self.vmTraces[self.processingHash] = {
gas: '0x0',
return: '0x0',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment