diff options
author | Martin Holst Swende <martin@swende.se> | 2018-02-23 18:32:57 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-02-23 18:32:57 +0800 |
commit | 44d40ffce1200ce8875e187b57ac17e4901db32a (patch) | |
tree | 1bbdd570d093740372fd24e8463a707aa56cffe8 /cmd/puppeth | |
parent | ae9f97221a96a86e4343a5c3cc4b1db44627a2f3 (diff) | |
download | dexon-44d40ffce1200ce8875e187b57ac17e4901db32a.tar.gz dexon-44d40ffce1200ce8875e187b57ac17e4901db32a.tar.zst dexon-44d40ffce1200ce8875e187b57ac17e4901db32a.zip |
core, vm, common: define constantinople fork + shift (#16045)
* core, vm, common: define constantinople fork, start implementation of shift instructions
* vm: more testcases
* vm: add tests for intpool erroneous intpool handling
* core, vm, common: fix constantinople review concerns
* vm: add string<->op definitions for new opcodes
Diffstat (limited to 'cmd/puppeth')
-rw-r--r-- | cmd/puppeth/module_dashboard.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/puppeth/module_dashboard.go b/cmd/puppeth/module_dashboard.go index 1cb2d4549..3832b247f 100644 --- a/cmd/puppeth/module_dashboard.go +++ b/cmd/puppeth/module_dashboard.go @@ -631,6 +631,7 @@ func deployDashboard(client *sshClient, network string, conf *config, config *da "Tangerine": conf.Genesis.Config.EIP150Block, "Spurious": conf.Genesis.Config.EIP155Block, "Byzantium": conf.Genesis.Config.ByzantiumBlock, + "Constantinople": conf.Genesis.Config.ConstantinopleBlock, }) files[filepath.Join(workdir, "index.html")] = indexfile.Bytes() |