good morning!!!!

Skip to content
Snippets Groups Projects
Commit b3da104e authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Corrected contract addresses

parent 0936e5cc
Branches
Tags
No related merge requests found
...@@ -222,7 +222,7 @@ func (block *Block) Undo() { ...@@ -222,7 +222,7 @@ func (block *Block) Undo() {
func (block *Block) MakeContract(tx *Transaction) { func (block *Block) MakeContract(tx *Transaction) {
// Create contract if there's no recipient // Create contract if there's no recipient
if tx.IsContract() { if tx.IsContract() {
addr := tx.Hash() addr := tx.Hash()[12:]
value := tx.Value value := tx.Value
contract := NewContract(value, []byte("")) contract := NewContract(value, []byte(""))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment