Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
burrow
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hang Yu
burrow
Commits
e0848e71
Unverified
Commit
e0848e71
authored
8 years ago
by
Benjamin Bollen
Browse files
Options
Downloads
Patches
Plain Diff
client: remove transaction after rebase
parent
572405d7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
client/cmd/transaction.go
+0
-2
0 additions, 2 deletions
client/cmd/transaction.go
client/transaction/transaction.go
+0
-96
0 additions, 96 deletions
client/transaction/transaction.go
with
0 additions
and
98 deletions
client/cmd/transaction.go
+
0
−
2
View file @
e0848e71
...
...
@@ -23,8 +23,6 @@ import (
"github.com/eris-ltd/eris-db/client/methods"
"github.com/eris-ltd/eris-db/util"
"github.com/eris-ltd/eris-db/client/transaction"
)
func
buildTransactionCommand
()
*
cobra
.
Command
{
...
...
This diff is collapsed.
Click to expand it.
client/transaction/transaction.go
deleted
100644 → 0
+
0
−
96
View file @
572405d7
// Copyright 2015, 2016 Eris Industries (UK) Ltd.
// This file is part of Eris-RT
// Eris-RT is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Eris-RT is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Eris-RT. If not, see <http://www.gnu.org/licenses/>.
package
transaction
import
(
"fmt"
"os"
"github.com/eris-ltd/eris-cli/log"
"github.com/eris-ltd/eris-db/client"
"github.com/eris-ltd/eris-db/client/core"
"github.com/eris-ltd/eris-db/definitions"
"github.com/eris-ltd/eris-db/keys"
)
func
Send
(
do
*
definitions
.
ClientDo
)
{
// construct two clients to call out to keys server and
// blockchain node.
erisKeyClient
:=
keys
.
NewErisKeyClient
(
do
.
SignAddrFlag
)
erisNodeClient
:=
client
.
NewErisNodeClient
(
do
.
NodeAddrFlag
)
// form the send transaction
sendTransaction
,
err
:=
core
.
Send
(
erisNodeClient
,
erisKeyClient
,
do
.
PubkeyFlag
,
do
.
AddrFlag
,
do
.
ToFlag
,
do
.
AmtFlag
,
do
.
NonceFlag
)
if
err
!=
nil
{
log
.
Fatalf
(
"Failed on forming Send Transaction: %s"
,
err
)
return
}
// TODO: [ben] we carry over the sign bool, but always set it to true,
// as we move away from and deprecate the api that allows sending unsigned
// transactions and relying on (our) receiving node to sign it.
unpackSignAndBroadcast
(
core
.
SignAndBroadcast
(
do
.
ChainidFlag
,
erisNodeClient
,
erisKeyClient
,
sendTransaction
,
true
,
do
.
BroadcastFlag
,
do
.
WaitFlag
))
}
func
Call
(
do
*
definitions
.
ClientDo
)
{
// construct two clients to call out to keys server and
// blockchain node.
erisKeyClient
:=
keys
.
NewErisKeyClient
(
do
.
SignAddrFlag
)
erisNodeClient
:=
client
.
NewErisNodeClient
(
do
.
NodeAddrFlag
)
// form the call transaction
callTransaction
,
err
:=
core
.
Call
(
erisNodeClient
,
erisKeyClient
,
do
.
PubkeyFlag
,
do
.
AddrFlag
,
do
.
ToFlag
,
do
.
AmtFlag
,
do
.
NonceFlag
,
do
.
GasFlag
,
do
.
FeeFlag
,
do
.
DataFlag
)
if
err
!=
nil
{
log
.
Fatalf
(
"Failed on forming Call Transaction: %s"
,
err
)
return
}
// TODO: [ben] we carry over the sign bool, but always set it to true,
// as we move away from and deprecate the api that allows sending unsigned
// transactions and relying on (our) receiving node to sign it.
unpackSignAndBroadcast
(
core
.
SignAndBroadcast
(
do
.
ChainidFlag
,
erisNodeClient
,
erisKeyClient
,
callTransaction
,
true
,
do
.
BroadcastFlag
,
do
.
WaitFlag
))
}
//----------------------------------------------------------------------
// Helper functions
func
unpackSignAndBroadcast
(
result
*
core
.
TxResult
,
err
error
)
{
if
err
!=
nil
{
log
.
Fatalf
(
"Failed on signing (and broadcasting) transaction: %s"
,
err
)
os
.
Exit
(
1
)
}
if
result
==
nil
{
// if we don't provide --sign or --broadcast
return
}
printResult
:=
log
.
Fields
{
"transaction hash"
:
fmt
.
Sprintf
(
"%X"
,
result
.
Hash
),
}
if
result
.
Address
!=
nil
{
printResult
[
"Contract Address"
]
=
fmt
.
Sprintf
(
"%X"
,
result
.
Address
)
}
if
result
.
Return
!=
nil
{
printResult
[
"Block Hash"
]
=
fmt
.
Sprintf
(
"%X"
,
result
.
BlockHash
)
printResult
[
"Return Value"
]
=
fmt
.
Sprintf
(
"%X"
,
result
.
Return
)
printResult
[
"Exception"
]
=
fmt
.
Sprintf
(
"%s"
,
result
.
Exception
)
}
log
.
WithFields
(
printResult
)
.
Warn
(
"Result"
)
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment