summaryrefslogtreecommitdiff
path: root/node/node.go
diff options
context:
space:
mode:
Diffstat (limited to 'node/node.go')
-rw-r--r--node/node.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/node/node.go b/node/node.go
deleted file mode 100644
index 18640e9..0000000
--- a/node/node.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package main
-
-import (
- "fmt"
-
- "github.com/holiman/uint256"
-)
-
-func main() {
- s := NewStack()
- x, _ := uint256.FromHex("0xfeedface")
- s.Push(x)
- y := s.Pop()
- fmt.Println(y.String())
-}