aboutsummaryrefslogtreecommitdiffstats
path: root/xeth
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-05-08 18:43:31 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-05-08 18:43:31 +0800
commit45c070fc8b0b8c98db97a9d25a0ca2fcaef26289 (patch)
treec37120a02ed0bf7d436adad0f7efb5c1384469f0 /xeth
parent637b2415d969a97b3d119be2aceb9411458d00d9 (diff)
parent009b2216921b15962f2612687c1460a8342d49d6 (diff)
downloadgo-tangerine-45c070fc8b0b8c98db97a9d25a0ca2fcaef26289.tar
go-tangerine-45c070fc8b0b8c98db97a9d25a0ca2fcaef26289.tar.gz
go-tangerine-45c070fc8b0b8c98db97a9d25a0ca2fcaef26289.tar.bz2
go-tangerine-45c070fc8b0b8c98db97a9d25a0ca2fcaef26289.tar.lz
go-tangerine-45c070fc8b0b8c98db97a9d25a0ca2fcaef26289.tar.xz
go-tangerine-45c070fc8b0b8c98db97a9d25a0ca2fcaef26289.tar.zst
go-tangerine-45c070fc8b0b8c98db97a9d25a0ca2fcaef26289.zip
Merge pull request #833 from ethersphere/frontier/solidity
solidity compiler and contract metadocs integration
Diffstat (limited to 'xeth')
-rw-r--r--xeth/xeth.go101
1 files changed, 97 insertions, 4 deletions
diff --git a/xeth/xeth.go b/xeth/xeth.go
index e5f068fd1..ad8596803 100644
--- a/xeth/xeth.go
+++ b/xeth/xeth.go
@@ -11,6 +11,7 @@ import (
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
+ "github.com/ethereum/go-ethereum/common/compiler"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/core/types"
@@ -65,6 +66,9 @@ type XEth struct {
// regmut sync.Mutex
// register map[string][]*interface{} // TODO improve return type
+ solcPath string
+ solc *compiler.Solidity
+
agent *miner.RemoteAgent
}
@@ -85,7 +89,6 @@ func New(eth *eth.Ethereum, frontend Frontend) *XEth {
agent: miner.NewRemoteAgent(),
}
eth.Miner().Register(xeth.agent)
-
if frontend == nil {
xeth.frontend = dummyFrontend{}
}
@@ -185,9 +188,38 @@ func (self *XEth) AtStateNum(num int64) *XEth {
return self.WithState(st)
}
+// applies queued transactions originating from address onto the latest state
+// and creates a block
+// only used in tests
+// - could be removed in favour of mining on testdag (natspec e2e + networking)
+// + filters
+func (self *XEth) ApplyTestTxs(statedb *state.StateDB, address common.Address, txc uint64) (uint64, *XEth) {
+
+ block := self.backend.ChainManager().NewBlock(address)
+ coinbase := statedb.GetStateObject(address)
+ coinbase.SetGasPool(big.NewInt(10000000))
+ txs := self.backend.TxPool().GetQueuedTransactions()
+
+ for i := 0; i < len(txs); i++ {
+ for _, tx := range txs {
+ if tx.Nonce() == txc {
+ _, _, err := core.ApplyMessage(core.NewEnv(statedb, self.backend.ChainManager(), tx, block), tx, coinbase)
+ if err != nil {
+ panic(err)
+ }
+ txc++
+ }
+ }
+ }
+
+ xeth := self.WithState(statedb)
+ return txc, xeth
+}
+
func (self *XEth) WithState(statedb *state.StateDB) *XEth {
xeth := &XEth{
- backend: self.backend,
+ backend: self.backend,
+ frontend: self.frontend,
}
xeth.state = NewState(xeth, statedb)
@@ -196,6 +228,44 @@ func (self *XEth) WithState(statedb *state.StateDB) *XEth {
func (self *XEth) State() *State { return self.state }
+// subscribes to new head block events and
+// waits until blockchain height is greater n at any time
+// given the current head, waits for the next chain event
+// sets the state to the current head
+// loop is async and quit by closing the channel
+// used in tests and JS console debug module to control advancing private chain manually
+// Note: this is not threadsafe, only called in JS single process and tests
+func (self *XEth) UpdateState() (wait chan *big.Int) {
+ wait = make(chan *big.Int)
+ go func() {
+ sub := self.backend.EventMux().Subscribe(core.ChainHeadEvent{})
+ var m, n *big.Int
+ var ok bool
+ out:
+ for {
+ select {
+ case event := <-sub.Chan():
+ ev, ok := event.(core.ChainHeadEvent)
+ if ok {
+ m = ev.Block.Number()
+ if n != nil && n.Cmp(m) < 0 {
+ wait <- n
+ n = nil
+ }
+ statedb := state.New(ev.Block.Root(), self.backend.StateDb())
+ self.state = NewState(self, statedb)
+ }
+ case n, ok = <-wait:
+ if !ok {
+ break out
+ }
+ }
+ }
+ sub.Unsubscribe()
+ }()
+ return
+}
+
func (self *XEth) Whisper() *Whisper { return self.whisper }
func (self *XEth) getBlockByHeight(height int64) *types.Block {
@@ -298,6 +368,23 @@ func (self *XEth) Accounts() []string {
return accountAddresses
}
+// accessor for solidity compiler.
+// memoized if available, retried on-demand if not
+func (self *XEth) Solc() (*compiler.Solidity, error) {
+ var err error
+ if self.solc == nil {
+ self.solc, err = compiler.New(self.solcPath)
+ }
+ return self.solc, err
+}
+
+// set in js console via admin interface or wrapper from cli flags
+func (self *XEth) SetSolc(solcPath string) (*compiler.Solidity, error) {
+ self.solcPath = solcPath
+ self.solc = nil
+ return self.Solc()
+}
+
func (self *XEth) DbPut(key, val []byte) bool {
self.backend.ExtraDb().Put(key, val)
return true
@@ -723,12 +810,18 @@ func (self *XEth) Call(fromStr, toStr, valueStr, gasStr, gasPriceStr, dataStr st
}
func (self *XEth) ConfirmTransaction(tx string) bool {
-
return self.frontend.ConfirmTransaction(tx)
-
}
func (self *XEth) Transact(fromStr, toStr, nonceStr, valueStr, gasStr, gasPriceStr, codeStr string) (string, error) {
+
+ // this minimalistic recoding is enough (works for natspec.js)
+ var jsontx = fmt.Sprintf(`{"params":[{"to":"%s","data": "%s"}]}`, toStr, codeStr)
+ if !self.ConfirmTransaction(jsontx) {
+ err := fmt.Errorf("Transaction not confirmed")
+ return "", err
+ }
+
var (
from = common.HexToAddress(fromStr)
to = common.HexToAddress(toStr)