diff options
Diffstat (limited to 'genesis.go')
-rw-r--r-- | genesis.go | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/genesis.go b/genesis.go deleted file mode 100644 index 21b8e9998..000000000 --- a/genesis.go +++ /dev/null @@ -1,34 +0,0 @@ -package main - -import ( - "math" -) - -/* - * This is the special genesis block. - */ - -var GenisisHeader = []interface{}{ - // Block number - uint32(0), - // Previous hash (none) - "", - // Sha of uncles - string(Sha256Bin(Encode([]interface{}{}))), - // Coinbase - "", - // Root state - "", - // Sha of transactions - string(Sha256Bin(Encode([]interface{}{}))), - // Difficulty - uint32(math.Pow(2, 36)), - // Time - uint64(1), - // Nonce - uint32(0), - // Extra - "", -} - -var Genesis = []interface{}{ GenisisHeader, []interface{}{}, []interface{}{} } |