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
c7e73ba1
Commit
c7e73ba1
authored
Feb 25, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added currency converting
parent
b30b9ab8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
0 deletions
+52
-0
common.go
ethutil/common.go
+35
-0
common_test.go
ethutil/common_test.go
+17
-0
No files found.
ethutil/common.go
0 → 100644
View file @
c7e73ba1
package
ethutil
import
(
"fmt"
"math/big"
)
var
(
Ether
=
BigPow
(
10
,
18
)
Finney
=
BigPow
(
10
,
15
)
Szabo
=
BigPow
(
10
,
12
)
Vito
=
BigPow
(
10
,
9
)
Turing
=
BigPow
(
10
,
6
)
Eins
=
BigPow
(
10
,
3
)
Wei
=
big
.
NewInt
(
1
)
)
func
CurrencyToString
(
num
*
big
.
Int
)
string
{
switch
{
case
num
.
Cmp
(
Ether
)
>=
0
:
return
fmt
.
Sprintf
(
"%v Ether"
,
new
(
big
.
Int
)
.
Div
(
num
,
Ether
))
case
num
.
Cmp
(
Finney
)
>=
0
:
return
fmt
.
Sprintf
(
"%v Finney"
,
new
(
big
.
Int
)
.
Div
(
num
,
Finney
))
case
num
.
Cmp
(
Szabo
)
>=
0
:
return
fmt
.
Sprintf
(
"%v Szabo"
,
new
(
big
.
Int
)
.
Div
(
num
,
Szabo
))
case
num
.
Cmp
(
Vito
)
>=
0
:
return
fmt
.
Sprintf
(
"%v Vito"
,
new
(
big
.
Int
)
.
Div
(
num
,
Vito
))
case
num
.
Cmp
(
Turing
)
>=
0
:
return
fmt
.
Sprintf
(
"%v Turing"
,
new
(
big
.
Int
)
.
Div
(
num
,
Turing
))
case
num
.
Cmp
(
Eins
)
>=
0
:
return
fmt
.
Sprintf
(
"%v Eins"
,
new
(
big
.
Int
)
.
Div
(
num
,
Eins
))
}
return
fmt
.
Sprintf
(
"%v Wei"
,
num
)
}
ethutil/common_test.go
0 → 100644
View file @
c7e73ba1
package
ethutil
import
(
"fmt"
"math/big"
"testing"
)
func
TestCommon
(
t
*
testing
.
T
)
{
fmt
.
Println
(
CurrencyToString
(
BigPow
(
10
,
19
)))
fmt
.
Println
(
CurrencyToString
(
BigPow
(
10
,
16
)))
fmt
.
Println
(
CurrencyToString
(
BigPow
(
10
,
13
)))
fmt
.
Println
(
CurrencyToString
(
BigPow
(
10
,
10
)))
fmt
.
Println
(
CurrencyToString
(
BigPow
(
10
,
7
)))
fmt
.
Println
(
CurrencyToString
(
BigPow
(
10
,
4
)))
fmt
.
Println
(
CurrencyToString
(
big
.
NewInt
(
10
)))
}
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