aboutsummaryrefslogtreecommitdiffstats
path: root/vm/log.go
diff options
context:
space:
mode:
Diffstat (limited to 'vm/log.go')
-rw-r--r--vm/log.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/vm/log.go b/vm/log.go
new file mode 100644
index 000000000..954d2ec91
--- /dev/null
+++ b/vm/log.go
@@ -0,0 +1,9 @@
+package vm
+
+import "math/big"
+
+type Log struct {
+ Address []byte
+ Topics []*big.Int
+ Data []byte
+}