Implemented LOG. Closes #159

This commit is contained in:
obscuren
2014-10-27 11:44:16 +01:00
parent 6623500c6b
commit 272d58662c
15 changed files with 81 additions and 11 deletions

9
vm/log.go Normal file
View File

@@ -0,0 +1,9 @@
package vm
import "math/big"
type Log struct {
Address []byte
Topics []*big.Int
Data []byte
}