aboutsummaryrefslogtreecommitdiffstats
path: root/xeth/xeth.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-20 12:24:23 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-20 12:24:23 +0800
commitb56e20be2760343147f72ca62a8db8bd216903bf (patch)
tree494ba55c1bd85839e2620676f33534f42a93777c /xeth/xeth.go
parent754160afea7fc230c3236d5494beefeb03b94140 (diff)
downloadgo-tangerine-b56e20be2760343147f72ca62a8db8bd216903bf.tar
go-tangerine-b56e20be2760343147f72ca62a8db8bd216903bf.tar.gz
go-tangerine-b56e20be2760343147f72ca62a8db8bd216903bf.tar.bz2
go-tangerine-b56e20be2760343147f72ca62a8db8bd216903bf.tar.lz
go-tangerine-b56e20be2760343147f72ca62a8db8bd216903bf.tar.xz
go-tangerine-b56e20be2760343147f72ca62a8db8bd216903bf.tar.zst
go-tangerine-b56e20be2760343147f72ca62a8db8bd216903bf.zip
Reorg for clarity
Diffstat (limited to 'xeth/xeth.go')
-rw-r--r--xeth/xeth.go36
1 files changed, 29 insertions, 7 deletions
diff --git a/xeth/xeth.go b/xeth/xeth.go
index 690db5135..3d44e292c 100644
--- a/xeth/xeth.go
+++ b/xeth/xeth.go
@@ -70,6 +70,13 @@ type Frontend interface {
ConfirmTransaction(tx *types.Transaction) bool
}
+// dummyFrontend is a non-interactive frontend that allows all
+// transactions but cannot not unlock any keys.
+type dummyFrontend struct{}
+
+func (dummyFrontend) UnlockAccount([]byte) bool { return false }
+func (dummyFrontend) ConfirmTransaction(*types.Transaction) bool { return true }
+
type XEth struct {
eth Backend
blockProcessor *core.BlockProcessor
@@ -90,13 +97,6 @@ type XEth struct {
messages map[int]*whisperFilter
}
-// dummyFrontend is a non-interactive frontend that allows all
-// transactions but cannot not unlock any keys.
-type dummyFrontend struct{}
-
-func (dummyFrontend) UnlockAccount([]byte) bool { return false }
-func (dummyFrontend) ConfirmTransaction(*types.Transaction) bool { return true }
-
// New creates an XEth that uses the given frontend.
// If a nil Frontend is provided, a default frontend which
// confirms all transactions will be used.
@@ -527,6 +527,28 @@ func (self *XEth) Transact(fromStr, toStr, valueStr, gasStr, gasPriceStr, codeSt
contractCreation bool
)
+ // TODO if no_private_key then
+ //if _, exists := p.register[args.From]; exists {
+ // p.register[args.From] = append(p.register[args.From], args)
+ //} else {
+ /*
+ account := accounts.Get(common.FromHex(args.From))
+ if account != nil {
+ if account.Unlocked() {
+ if !unlockAccount(account) {
+ return
+ }
+ }
+
+ result, _ := account.Transact(common.FromHex(args.To), common.FromHex(args.Value), common.FromHex(args.Gas), common.FromHex(args.GasPrice), common.FromHex(args.Data))
+ if len(result) > 0 {
+ *reply = common.ToHex(result)
+ }
+ } else if _, exists := p.register[args.From]; exists {
+ p.register[ags.From] = append(p.register[args.From], args)
+ }
+ */
+
from = common.FromHex(fromStr)
data = common.FromHex(codeStr)
to = common.FromHex(toStr)