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
930e9343
Unverified
Commit
930e9343
authored
6 years ago
by
Sean Young
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' into state
parents
4707e645
9a8797c1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
integration/rpctransact/name_test.go
+6
-1
6 additions, 1 deletion
integration/rpctransact/name_test.go
rpc/rpcquery/query_server.go
+7
-2
7 additions, 2 deletions
rpc/rpcquery/query_server.go
txs/payload/tx_input.go
+1
-1
1 addition, 1 deletion
txs/payload/tx_input.go
with
14 additions
and
4 deletions
integration/rpctransact/name_test.go
+
6
−
1
View file @
930e9343
...
...
@@ -33,6 +33,10 @@ func TestNameTxSync(t *testing.T) {
qcli
:=
rpctest
.
NewQueryClient
(
t
,
testConfig
.
RPC
.
GRPC
.
ListenAddress
)
entry
,
err
:=
qcli
.
GetName
(
context
.
Background
(),
&
rpcquery
.
GetNameParam
{
Name
:
"n'existe pas"
,
})
require
.
Error
(
t
,
err
)
entry
,
err
=
qcli
.
GetName
(
context
.
Background
(),
&
rpcquery
.
GetNameParam
{
Name
:
name
,
})
require
.
NoError
(
t
,
err
)
...
...
@@ -40,6 +44,7 @@ func TestNameTxSync(t *testing.T) {
assert
.
Equal
(
t
,
data
,
entry
.
Data
)
assert
.
Equal
(
t
,
inputAddress
,
entry
.
Owner
)
assert
.
True
(
t
,
entry
.
Expires
>=
expiresIn
,
"expiry should be later than expiresIn"
)
}
func
TestNameReg
(
t
*
testing
.
T
)
{
...
...
@@ -56,7 +61,7 @@ func TestNameReg(t *testing.T) {
txe
:=
rpctest
.
UpdateName
(
t
,
tcli
,
inputAddress
,
name
,
data
,
numDesiredBlocks
)
entry
:=
txe
.
Result
.
NameEntry
assert
.
NotNil
(
t
,
entry
,
"name shou
d
l return"
)
assert
.
NotNil
(
t
,
entry
,
"name shoul
d
return"
)
_
,
ok
:=
txe
.
Envelope
.
Tx
.
Payload
.
(
*
payload
.
NameTx
)
require
.
True
(
t
,
ok
,
"should be NameTx: %v"
,
txe
.
Envelope
.
Tx
.
Payload
)
...
...
This diff is collapsed.
Click to expand it.
rpc/rpcquery/query_server.go
+
7
−
2
View file @
930e9343
...
...
@@ -2,6 +2,7 @@ package rpcquery
import
(
"context"
"fmt"
"github.com/hyperledger/burrow/acm"
"github.com/hyperledger/burrow/acm/state"
...
...
@@ -67,8 +68,12 @@ func (qs *queryServer) ListAccounts(param *ListAccountsParam, stream Query_ListA
}
// Name registry
func
(
qs
*
queryServer
)
GetName
(
ctx
context
.
Context
,
param
*
GetNameParam
)
(
*
names
.
Entry
,
error
)
{
return
qs
.
nameReg
.
GetName
(
param
.
Name
)
func
(
qs
*
queryServer
)
GetName
(
ctx
context
.
Context
,
param
*
GetNameParam
)
(
entry
*
names
.
Entry
,
err
error
)
{
entry
,
err
=
qs
.
nameReg
.
GetName
(
param
.
Name
)
if
entry
==
nil
&&
err
==
nil
{
err
=
fmt
.
Errorf
(
"name %s not found"
,
param
.
Name
)
}
return
}
func
(
qs
*
queryServer
)
ListNames
(
param
*
ListNamesParam
,
stream
Query_ListNamesServer
)
error
{
...
...
This diff is collapsed.
Click to expand it.
txs/payload/tx_input.go
+
1
−
1
View file @
930e9343
...
...
@@ -38,7 +38,7 @@ func ValidateInputs(getter state.AccountGetter, ins []*TxInput) error {
return
err
}
if
acc
==
nil
{
return
fmt
.
Errorf
(
"validateInputs() expects to be able to retrive accou
t
n %v but it was not found"
,
return
fmt
.
Errorf
(
"validateInputs() expects to be able to retri
e
ve accoun
t
%v but it was not found"
,
in
.
Address
)
}
err
=
in
.
Validate
(
acc
)
...
...
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