Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
multisend
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
李伟@五瓣科技
multisend
Commits
3dc43271
Commit
3dc43271
authored
Mar 17, 2022
by
李伟@五瓣科技
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix percent
parent
c00775bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
http.go
http.go
+6
-6
No files found.
http.go
View file @
3dc43271
...
@@ -501,7 +501,7 @@ func (web *WebServicer) TxsHandler(w http.ResponseWriter, r *http.Request) {
...
@@ -501,7 +501,7 @@ func (web *WebServicer) TxsHandler(w http.ResponseWriter, r *http.Request) {
id
:=
uuid
.
New
()
id
:=
uuid
.
New
()
consTxNum
:=
0
//
consTxNum := 0
total
:=
int
(
params
.
TxCount
)
total
:=
int
(
params
.
TxCount
)
...
@@ -509,12 +509,12 @@ func (web *WebServicer) TxsHandler(w http.ResponseWriter, r *http.Request) {
...
@@ -509,12 +509,12 @@ func (web *WebServicer) TxsHandler(w http.ResponseWriter, r *http.Request) {
total
=
total
+
1
total
=
total
+
1
}
}
consTxNum
=
total
/
(
batchTxHashSize
*
batchTxSize
)
//
consTxNum = total / (batchTxHashSize * batchTxSize)
if
total
%
(
batchTxHashSize
*
batchTxSize
)
!=
0
{
//
if total%(batchTxHashSize*batchTxSize) != 0 {
consTxNum
=
consTxNum
+
1
//
consTxNum = consTxNum + 1
}
//
}
SetSendRecord
(
id
,
SendRecord
{
TotalConsTx
:
int64
(
consTxNum
)})
SetSendRecord
(
id
,
SendRecord
{
TotalConsTx
:
int64
(
total
)})
go
func
()
{
go
func
()
{
...
...
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