Skip to content
Snippets Groups Projects
Unverified Commit 930e9343 authored by Sean Young's avatar Sean Young Committed by GitHub
Browse files

Merge branch 'develop' into state

parents 4707e645 9a8797c1
No related branches found
No related tags found
No related merge requests found
......@@ -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 shoudl return")
assert.NotNil(t, entry, "name should return")
_, ok := txe.Envelope.Tx.Payload.(*payload.NameTx)
require.True(t, ok, "should be NameTx: %v", txe.Envelope.Tx.Payload)
......
......@@ -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 {
......
......@@ -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 accoutn %v but it was not found",
return fmt.Errorf("validateInputs() expects to be able to retrieve account %v but it was not found",
in.Address)
}
err = in.Validate(acc)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment