aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-02-19 23:26:35 +0800
committerobscuren <geffobscura@gmail.com>2014-02-19 23:26:35 +0800
commitb3da104e569e15c710e6b95ac00c9c2fc80bc9ae (patch)
treed6cf30c70fbff2ed3e949661a3cd1a7112d4c0d9 /ethchain
parent0936e5ccf5c8fc842cbd135c02a6abcd009b4e7f (diff)
downloadgo-tangerine-b3da104e569e15c710e6b95ac00c9c2fc80bc9ae.tar
go-tangerine-b3da104e569e15c710e6b95ac00c9c2fc80bc9ae.tar.gz
go-tangerine-b3da104e569e15c710e6b95ac00c9c2fc80bc9ae.tar.bz2
go-tangerine-b3da104e569e15c710e6b95ac00c9c2fc80bc9ae.tar.lz
go-tangerine-b3da104e569e15c710e6b95ac00c9c2fc80bc9ae.tar.xz
go-tangerine-b3da104e569e15c710e6b95ac00c9c2fc80bc9ae.tar.zst
go-tangerine-b3da104e569e15c710e6b95ac00c9c2fc80bc9ae.zip
Corrected contract addresses
Diffstat (limited to 'ethchain')
-rw-r--r--ethchain/block.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/block.go b/ethchain/block.go
index ae654b7d8..0b4f93e8c 100644
--- a/ethchain/block.go
+++ b/ethchain/block.go
@@ -222,7 +222,7 @@ func (block *Block) Undo() {
func (block *Block) MakeContract(tx *Transaction) {
// Create contract if there's no recipient
if tx.IsContract() {
- addr := tx.Hash()
+ addr := tx.Hash()[12:]
value := tx.Value
contract := NewContract(value, []byte(""))