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
1938bfcd
Commit
1938bfcd
authored
Jun 11, 2014
by
Maran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compare
parent
71ab5d52
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
block.go
ethchain/block.go
+2
-1
No files found.
ethchain/block.go
View file @
1938bfcd
...
@@ -155,9 +155,10 @@ func (block *Block) PayFee(addr []byte, fee *big.Int) bool {
...
@@ -155,9 +155,10 @@ func (block *Block) PayFee(addr []byte, fee *big.Int) bool {
}
}
func
(
block
*
Block
)
CalcGasLimit
(
parent
*
Block
)
*
big
.
Int
{
func
(
block
*
Block
)
CalcGasLimit
(
parent
*
Block
)
*
big
.
Int
{
if
block
.
Number
==
big
.
NewInt
(
0
)
{
if
block
.
Number
.
Cmp
(
big
.
NewInt
(
0
))
==
0
{
return
ethutil
.
BigPow
(
10
,
6
)
return
ethutil
.
BigPow
(
10
,
6
)
}
}
previous
:=
new
(
big
.
Int
)
.
Mul
(
big
.
NewInt
(
1023
),
parent
.
GasLimit
)
previous
:=
new
(
big
.
Int
)
.
Mul
(
big
.
NewInt
(
1023
),
parent
.
GasLimit
)
current
:=
new
(
big
.
Rat
)
.
Mul
(
new
(
big
.
Rat
)
.
SetInt
(
block
.
GasUsed
),
big
.
NewRat
(
6
,
5
))
current
:=
new
(
big
.
Rat
)
.
Mul
(
new
(
big
.
Rat
)
.
SetInt
(
block
.
GasUsed
),
big
.
NewRat
(
6
,
5
))
curInt
:=
new
(
big
.
Int
)
.
Div
(
current
.
Num
(),
current
.
Denom
())
curInt
:=
new
(
big
.
Int
)
.
Div
(
current
.
Num
(),
current
.
Denom
())
...
...
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