Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
79fa0586
Commit
79fa0586
authored
May 15, 2015
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xeth: set balance max balance to from in call. Closes #951
parent
d116b959
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
big.go
common/big.go
+1
-0
xeth.go
xeth/xeth.go
+2
-1
No files found.
common/big.go
View file @
79fa0586
...
...
@@ -13,6 +13,7 @@ var (
Big32
=
big
.
NewInt
(
32
)
Big256
=
big
.
NewInt
(
0xff
)
Big257
=
big
.
NewInt
(
257
)
MaxBig
=
String2Big
(
"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
)
)
// Big pow
...
...
xeth/xeth.go
View file @
79fa0586
...
...
@@ -778,7 +778,7 @@ func (self *XEth) PushTx(encodedTx string) (string, error) {
}
func
(
self
*
XEth
)
Call
(
fromStr
,
toStr
,
valueStr
,
gasStr
,
gasPriceStr
,
dataStr
string
)
(
string
,
string
,
error
)
{
statedb
:=
self
.
State
()
.
State
()
//self.eth.ChainManager().TransState()
statedb
:=
self
.
State
()
.
State
()
.
Copy
()
//self.eth.ChainManager().TransState()
var
from
*
state
.
StateObject
if
len
(
fromStr
)
==
0
{
accounts
,
err
:=
self
.
backend
.
AccountManager
()
.
Accounts
()
...
...
@@ -791,6 +791,7 @@ func (self *XEth) Call(fromStr, toStr, valueStr, gasStr, gasPriceStr, dataStr st
from
=
statedb
.
GetOrNewStateObject
(
common
.
HexToAddress
(
fromStr
))
}
from
.
SetBalance
(
common
.
MaxBig
)
from
.
SetGasPool
(
self
.
backend
.
ChainManager
()
.
GasLimit
())
msg
:=
callmsg
{
from
:
from
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment