Updated vm

This commit is contained in:
obscuren 2014-10-17 17:14:29 +02:00
parent 9e6411db31
commit 3976b52ed7
2 changed files with 2 additions and 1 deletions

View File

@ -886,7 +886,7 @@ ApplicationWindow {
pastPeers.append({text: ips.get(i)})
}
pastPeers.insert(0, {text: "poc-6.ethdev.com:30303"})
pastPeers.insert(0, {text: "poc-7.ethdev.com:30303"})
}
}

View File

@ -33,3 +33,4 @@ func (self *VMEnv) Difficulty() *big.Int { return self.block.Difficulty }
func (self *VMEnv) BlockHash() []byte { return self.block.Hash() }
func (self *VMEnv) Value() *big.Int { return self.value }
func (self *VMEnv) State() *ethstate.State { return self.state }
func (self *VMEnv) GasLimit() *big.Int { return self.block.GasLimit }