Commit 119ee0e6 authored by vipwzw's avatar vipwzw Committed by 33cn

update 2019/01/26

parent bd945d91
......@@ -3,5 +3,5 @@ i=0
while IFS='' read -r line || [[ -n $line ]]; do
[ -z "$line" ] && continue
((i++))
../chain33-cli account balance -a "$line" -e ticket
../chain33-cli --rpc_laddr https://mainnode.bityuan.com:8801 account balance -a "$line" -e ticket
done <"$1"
......@@ -220,7 +220,7 @@ func (c *channelClient) GetBalance(in *types.ReqBalance) ([]*types.Account, erro
}
// GetAllExecBalance get balance of exec
func (c *channelClient) GetAllExecBalance(in *types.ReqAddr) (*types.AllExecBalance, error) {
func (c *channelClient) GetAllExecBalance(in *types.ReqAllExecBalance) (*types.AllExecBalance, error) {
addr := in.Addr
err := address.CheckAddress(addr)
if err != nil {
......@@ -234,8 +234,11 @@ func (c *channelClient) GetAllExecBalance(in *types.ReqAddr) (*types.AllExecBala
for _, exec := range types.AllowUserExec {
execer := types.ExecName(string(exec))
params := &types.ReqBalance{
Addresses: addrs,
Execer: execer,
Addresses: addrs,
Execer: execer,
StateHash: in.StateHash,
AssetExec: in.AssetExec,
AssetSymbol: in.AssetSymbol,
}
res, err := c.GetBalance(params)
if err != nil {
......
......@@ -254,7 +254,7 @@ func (g *Grpc) GetBalance(ctx context.Context, in *pb.ReqBalance) (*pb.Accounts,
}
// GetAllExecBalance get balance of exec
func (g *Grpc) GetAllExecBalance(ctx context.Context, in *pb.ReqAddr) (*pb.AllExecBalance, error) {
func (g *Grpc) GetAllExecBalance(ctx context.Context, in *pb.ReqAllExecBalance) (*pb.AllExecBalance, error) {
return g.cli.GetAllExecBalance(in)
}
......
......@@ -740,7 +740,7 @@ func (c *Chain33) GetBalance(in types.ReqBalance, result *interface{}) error {
}
// GetAllExecBalance get all balance of exec
func (c *Chain33) GetAllExecBalance(in types.ReqAddr, result *interface{}) error {
func (c *Chain33) GetAllExecBalance(in types.ReqAllExecBalance, result *interface{}) error {
balance, err := c.cli.GetAllExecBalance(&in)
if err != nil {
return err
......
......@@ -143,18 +143,15 @@ func balance(cmd *cobra.Command, args []string) {
return
}
}
if execer == "" {
req := types.ReqAddr{Addr: addr}
if execer == "" && height == -1 {
req := types.ReqAllExecBalance{Addr: addr}
var res rpctypes.AllExecBalance
ctx := jsonclient.NewRPCCtx(rpcLaddr, "Chain33.GetAllExecBalance", req, &res)
ctx.SetResultCb(parseGetAllBalanceRes)
ctx.Run()
return
}
if ok := types.IsAllowExecName([]byte(execer), []byte(execer)); !ok {
fmt.Fprintln(os.Stderr, types.ErrExecNameNotAllow)
return
}
stateHash := ""
if height >= 0 {
params := types.ReqBlocks{
......@@ -173,6 +170,20 @@ func balance(cmd *cobra.Command, args []string) {
stateHash = h.StateHash
}
if execer == "" {
req := types.ReqAllExecBalance{Addr: addr, StateHash: stateHash}
var res rpctypes.AllExecBalance
ctx := jsonclient.NewRPCCtx(rpcLaddr, "Chain33.GetAllExecBalance", req, &res)
ctx.SetResultCb(parseGetAllBalanceRes)
ctx.Run()
return
}
if ok := types.IsAllowExecName([]byte(execer), []byte(execer)); !ok {
fmt.Fprintln(os.Stderr, types.ErrExecNameNotAllow)
return
}
var addrs []string
addrs = append(addrs, addr)
params := types.ReqBalance{
......
package executor
import (
"testing"
rpctypes "github.com/33cn/chain33/rpc/types"
"github.com/33cn/chain33/types"
"github.com/33cn/chain33/util"
"github.com/33cn/chain33/util/testnode"
"github.com/stretchr/testify/assert"
)
func TestManageConfig(t *testing.T) {
cfg, sub := testnode.GetDefaultConfig()
mocker := testnode.NewWithConfig(cfg, sub, nil)
defer mocker.Close()
mocker.Listen()
err := mocker.SendHot()
assert.Nil(t, err)
//创建黑名单
// -o add -v BTY
create := &types.ModifyConfig{
Key: "token-blacklist",
Op: "add",
Value: "BTY",
Addr: "",
}
jsondata := types.MustPBToJSON(create)
/*
{
"execer": "manage",
"actionName": "Modify",
"payload": {
"key": "token-blacklist",
"value": "BTY",
"op": "add",
"addr": ""
}
}
*/
req := &rpctypes.CreateTxIn{
Execer: "manage",
ActionName: "Modify",
Payload: jsondata,
}
var txhex string
err = mocker.GetJSONC().Call("Chain33.CreateTransaction", req, &txhex)
assert.Nil(t, err)
hash, err := mocker.SendAndSign(mocker.GetHotKey(), txhex)
assert.Nil(t, err)
txinfo, err := mocker.WaitTx(hash)
assert.Nil(t, err)
assert.Equal(t, txinfo.Receipt.Ty, int32(2))
create = &types.ModifyConfig{
Key: "token-blacklist",
Op: "add",
Value: "YCC",
Addr: "",
}
jsondata = types.MustPBToJSON(create)
req = &rpctypes.CreateTxIn{
Execer: "manage",
ActionName: "Modify",
Payload: jsondata,
}
err = mocker.GetJSONC().Call("Chain33.CreateTransaction", req, &txhex)
assert.Nil(t, err)
hash, err = mocker.SendAndSign(mocker.GetHotKey(), txhex)
assert.Nil(t, err)
txinfo, err = mocker.WaitTx(hash)
assert.Nil(t, err)
assert.Equal(t, txinfo.Receipt.Ty, int32(2))
create = &types.ModifyConfig{
Key: "token-blacklist",
Op: "add",
Value: "TTT",
Addr: "",
}
jsondata = types.MustPBToJSON(create)
req = &rpctypes.CreateTxIn{
Execer: "manage",
ActionName: "Modify",
Payload: jsondata,
}
err = mocker.GetJSONC().Call("Chain33.CreateTransaction", req, &txhex)
assert.Nil(t, err)
hash, err = mocker.SendAndSign(mocker.GetHotKey(), txhex)
assert.Nil(t, err)
txinfo, err = mocker.WaitTx(hash)
assert.Nil(t, err)
assert.Equal(t, txinfo.Receipt.Ty, int32(2))
//做一个查询
/*
{
"execer": "manage",
"funcName": "GetConfigItem",
"payload": {
"data": "token-blacklist"
}
}
*/
queryreq := &types.ReqString{
Data: "token-blacklist",
}
query := &rpctypes.Query4Jrpc{
Execer: "manage",
FuncName: "GetConfigItem",
Payload: types.MustPBToJSON(queryreq),
}
var reply types.ReplyConfig
err = mocker.GetJSONC().Call("Chain33.Query", query, &reply)
assert.Nil(t, err)
assert.Equal(t, reply.Key, "token-blacklist")
assert.Equal(t, reply.Value, "[BTY YCC TTT]")
create = &types.ModifyConfig{
Key: "token-blacklist",
Op: "delete",
Value: "TTT",
Addr: "",
}
jsondata = types.MustPBToJSON(create)
req = &rpctypes.CreateTxIn{
Execer: "manage",
ActionName: "Modify",
Payload: jsondata,
}
err = mocker.GetJSONC().Call("Chain33.CreateTransaction", req, &txhex)
assert.Nil(t, err)
hash, err = mocker.SendAndSign(mocker.GetHotKey(), txhex)
assert.Nil(t, err)
txinfo, err = mocker.WaitTx(hash)
assert.Nil(t, err)
util.JSONPrint(t, txinfo)
assert.Equal(t, txinfo.Receipt.Ty, int32(2))
queryreq = &types.ReqString{
Data: "token-blacklist",
}
query = &rpctypes.Query4Jrpc{
Execer: "manage",
FuncName: "GetConfigItem",
Payload: types.MustPBToJSON(queryreq),
}
err = mocker.GetJSONC().Call("Chain33.Query", query, &reply)
assert.Nil(t, err)
assert.Equal(t, reply.Key, "token-blacklist")
assert.Equal(t, reply.Value, "[BTY YCC]")
}
func TestTokenFinisher(t *testing.T) {
cfg, sub := testnode.GetDefaultConfig()
mocker := testnode.NewWithConfig(cfg, sub, nil)
defer mocker.Close()
mocker.Listen()
err := mocker.SendHot()
assert.Nil(t, err)
//添加发币审核地址
create := &types.ModifyConfig{
Key: "token-finisher",
Op: "add",
Value: "1FCX9XJTZXvZteagTrefJEBPZMt8BFmdoi",
Addr: "",
}
jsondata := types.MustPBToJSON(create)
/*
{
"execer": "manage",
"actionName": "Modify",
"payload": {
"key": "token-finisher",
"value": "1FCX9XJTZXvZteagTrefJEBPZMt8BFmdoi",
"op": "add",
"addr": ""
}
}
*/
req := &rpctypes.CreateTxIn{
Execer: "manage",
ActionName: "Modify",
Payload: jsondata,
}
var txhex string
err = mocker.GetJSONC().Call("Chain33.CreateTransaction", req, &txhex)
assert.Nil(t, err)
hash, err := mocker.SendAndSign(mocker.GetHotKey(), txhex)
assert.Nil(t, err)
txinfo, err := mocker.WaitTx(hash)
assert.Nil(t, err)
assert.Equal(t, txinfo.Receipt.Ty, int32(2))
queryreq := &types.ReqString{
Data: "token-finisher",
}
query := &rpctypes.Query4Jrpc{
Execer: "manage",
FuncName: "GetConfigItem",
Payload: types.MustPBToJSON(queryreq),
}
var reply types.ReplyConfig
err = mocker.GetJSONC().Call("Chain33.Query", query, &reply)
assert.Nil(t, err)
assert.Equal(t, reply.Key, "token-finisher")
assert.Equal(t, reply.Value, "[1FCX9XJTZXvZteagTrefJEBPZMt8BFmdoi]")
}
......@@ -406,6 +406,79 @@ func (m *AllExecBalance) GetExecAccount() []*ExecAccount {
return nil
}
type ReqAllExecBalance struct {
//地址列表
Addr string `protobuf:"bytes,1,opt,name=addr,proto3" json:"addr,omitempty"`
//执行器名称
Execer string `protobuf:"bytes,2,opt,name=execer,proto3" json:"execer,omitempty"`
StateHash string `protobuf:"bytes,3,opt,name=stateHash,proto3" json:"stateHash,omitempty"`
AssetExec string `protobuf:"bytes,4,opt,name=asset_exec,json=assetExec,proto3" json:"asset_exec,omitempty"`
AssetSymbol string `protobuf:"bytes,5,opt,name=asset_symbol,json=assetSymbol,proto3" json:"asset_symbol,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ReqAllExecBalance) Reset() { *m = ReqAllExecBalance{} }
func (m *ReqAllExecBalance) String() string { return proto.CompactTextString(m) }
func (*ReqAllExecBalance) ProtoMessage() {}
func (*ReqAllExecBalance) Descriptor() ([]byte, []int) {
return fileDescriptor_8e28828dcb8d24f0, []int{7}
}
func (m *ReqAllExecBalance) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReqAllExecBalance.Unmarshal(m, b)
}
func (m *ReqAllExecBalance) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReqAllExecBalance.Marshal(b, m, deterministic)
}
func (m *ReqAllExecBalance) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReqAllExecBalance.Merge(m, src)
}
func (m *ReqAllExecBalance) XXX_Size() int {
return xxx_messageInfo_ReqAllExecBalance.Size(m)
}
func (m *ReqAllExecBalance) XXX_DiscardUnknown() {
xxx_messageInfo_ReqAllExecBalance.DiscardUnknown(m)
}
var xxx_messageInfo_ReqAllExecBalance proto.InternalMessageInfo
func (m *ReqAllExecBalance) GetAddr() string {
if m != nil {
return m.Addr
}
return ""
}
func (m *ReqAllExecBalance) GetExecer() string {
if m != nil {
return m.Execer
}
return ""
}
func (m *ReqAllExecBalance) GetStateHash() string {
if m != nil {
return m.StateHash
}
return ""
}
func (m *ReqAllExecBalance) GetAssetExec() string {
if m != nil {
return m.AssetExec
}
return ""
}
func (m *ReqAllExecBalance) GetAssetSymbol() string {
if m != nil {
return m.AssetSymbol
}
return ""
}
func init() {
proto.RegisterType((*Account)(nil), "types.Account")
proto.RegisterType((*ReceiptExecAccountTransfer)(nil), "types.ReceiptExecAccountTransfer")
......@@ -414,35 +487,37 @@ func init() {
proto.RegisterType((*Accounts)(nil), "types.Accounts")
proto.RegisterType((*ExecAccount)(nil), "types.ExecAccount")
proto.RegisterType((*AllExecBalance)(nil), "types.AllExecBalance")
proto.RegisterType((*ReqAllExecBalance)(nil), "types.ReqAllExecBalance")
}
func init() { proto.RegisterFile("account.proto", fileDescriptor_8e28828dcb8d24f0) }
var fileDescriptor_8e28828dcb8d24f0 = []byte{
// 399 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x53, 0xc1, 0x8e, 0xd3, 0x30,
0x10, 0x95, 0x9b, 0x76, 0xb3, 0x99, 0xc2, 0x1e, 0x7c, 0x58, 0x59, 0x2b, 0x56, 0x84, 0x9c, 0x72,
0x40, 0xa9, 0x44, 0xf8, 0x81, 0x56, 0x42, 0xe2, 0x86, 0x64, 0x38, 0xf5, 0x82, 0x1c, 0x77, 0x4a,
0x2b, 0xd2, 0x24, 0xd8, 0x2e, 0xa2, 0x7c, 0x00, 0x1f, 0xc2, 0x97, 0x22, 0x4f, 0x9d, 0x36, 0xa5,
0x02, 0xed, 0xad, 0xf3, 0xde, 0xcc, 0xbc, 0xe7, 0xd7, 0x09, 0x3c, 0x57, 0x5a, 0xb7, 0xfb, 0xc6,
0x15, 0x9d, 0x69, 0x5d, 0xcb, 0x27, 0xee, 0xd0, 0xa1, 0xcd, 0xbe, 0x42, 0x3c, 0x3f, 0xe2, 0xfc,
0x01, 0x6e, 0xf5, 0xde, 0x18, 0x6c, 0xf4, 0x41, 0xb0, 0x94, 0xe5, 0x13, 0x79, 0xaa, 0xb9, 0x80,
0xb8, 0x52, 0xb5, 0x6a, 0x34, 0x8a, 0x51, 0xca, 0xf2, 0x48, 0xf6, 0x25, 0xbf, 0x87, 0x9b, 0xb5,
0x69, 0x7f, 0x62, 0x23, 0x22, 0x22, 0x42, 0xc5, 0x39, 0x8c, 0xd5, 0x6a, 0x65, 0xc4, 0x38, 0x65,
0x79, 0x22, 0xe9, 0x77, 0xf6, 0x8b, 0xc1, 0x83, 0x44, 0x8d, 0xdb, 0xce, 0xbd, 0xfb, 0x81, 0x3a,
0x08, 0x7f, 0x32, 0xaa, 0xb1, 0x6b, 0x34, 0xde, 0x00, 0x7a, 0xd8, 0x8f, 0x31, 0x1a, 0x3b, 0xd5,
0x3c, 0x83, 0x71, 0x67, 0xf0, 0x3b, 0xa9, 0x4f, 0xdf, 0xdc, 0x15, 0xe4, 0xbe, 0x08, 0x1b, 0x24,
0x71, 0x3c, 0x87, 0xf8, 0x68, 0xd8, 0x91, 0x97, 0xeb, 0xb6, 0x9e, 0xce, 0xd6, 0x70, 0x1f, 0x7c,
0xfc, 0xed, 0xa1, 0xd7, 0x61, 0x4f, 0xd3, 0x19, 0xfd, 0x5f, 0xe7, 0x37, 0x03, 0x90, 0xf8, 0x6d,
0x11, 0xb2, 0x7a, 0x01, 0x89, 0xcf, 0x01, 0xad, 0x45, 0x2b, 0x58, 0x1a, 0xe5, 0x89, 0x3c, 0x03,
0x3e, 0x49, 0xff, 0x5c, 0x34, 0xb4, 0x35, 0x91, 0xa1, 0xf2, 0x53, 0xd6, 0x29, 0x87, 0xef, 0x95,
0xdd, 0xd0, 0xc3, 0x12, 0x79, 0x06, 0xf8, 0x23, 0x80, 0xb2, 0x16, 0xdd, 0x67, 0xdf, 0x1d, 0xd2,
0x4e, 0x08, 0xf1, 0x11, 0xf3, 0x57, 0xf0, 0xec, 0x48, 0xdb, 0xc3, 0xae, 0x6a, 0x6b, 0x31, 0xa1,
0x86, 0x29, 0x61, 0x1f, 0x09, 0xca, 0x5e, 0xc3, 0x6d, 0x30, 0x6e, 0x79, 0x0a, 0x91, 0xd2, 0x9a,
0xbc, 0x5d, 0x3f, 0xcb, 0x53, 0xd9, 0x07, 0x98, 0x0e, 0xfe, 0xbb, 0x81, 0x69, 0x76, 0x61, 0x3a,
0x87, 0x38, 0xdc, 0xdb, 0xbf, 0x32, 0x0a, 0x74, 0xb6, 0x84, 0xbb, 0x79, 0x5d, 0xfb, 0x9d, 0x7d,
0x4c, 0xfd, 0xe9, 0xb0, 0xf3, 0xe9, 0xf0, 0xb7, 0x17, 0xb2, 0x62, 0x44, 0x06, 0x79, 0xd8, 0x39,
0x60, 0xe4, 0xb0, 0x6d, 0xf1, 0x72, 0xf9, 0xf8, 0x65, 0xeb, 0x36, 0xfb, 0xaa, 0xd0, 0xed, 0x6e,
0x56, 0x96, 0xba, 0x99, 0xe9, 0x8d, 0xda, 0x36, 0x65, 0x39, 0xa3, 0xc9, 0xea, 0x86, 0x3e, 0x86,
0xf2, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb3, 0x61, 0x7c, 0x60, 0x1d, 0x03, 0x00, 0x00,
// 414 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x53, 0xc1, 0x6e, 0xd3, 0x40,
0x10, 0xd5, 0xc6, 0x49, 0x5d, 0x4f, 0xa0, 0x12, 0x7b, 0xa8, 0x56, 0x15, 0x15, 0x66, 0x4f, 0x3e,
0x20, 0x47, 0xc2, 0xfc, 0x40, 0x2b, 0x21, 0x71, 0x43, 0x5a, 0x38, 0xf5, 0x82, 0xd6, 0xdb, 0x09,
0x89, 0x70, 0x6d, 0x77, 0x77, 0x83, 0x08, 0x1f, 0xc0, 0x6f, 0x20, 0xf1, 0xa5, 0x68, 0x27, 0xeb,
0xc6, 0x25, 0x02, 0xe5, 0xc6, 0x2d, 0xf3, 0xde, 0xec, 0xbc, 0x37, 0x2f, 0x63, 0x78, 0xaa, 0x8d,
0xe9, 0x36, 0xad, 0x2f, 0x7b, 0xdb, 0xf9, 0x8e, 0xcf, 0xfc, 0xb6, 0x47, 0x27, 0xbf, 0x40, 0x7a,
0xb5, 0xc3, 0xf9, 0x05, 0x9c, 0x9a, 0x8d, 0xb5, 0xd8, 0x9a, 0xad, 0x60, 0x39, 0x2b, 0x66, 0xea,
0xa1, 0xe6, 0x02, 0xd2, 0x5a, 0x37, 0xba, 0x35, 0x28, 0x26, 0x39, 0x2b, 0x12, 0x35, 0x94, 0xfc,
0x1c, 0x4e, 0x96, 0xb6, 0xfb, 0x8e, 0xad, 0x48, 0x88, 0x88, 0x15, 0xe7, 0x30, 0xd5, 0xb7, 0xb7,
0x56, 0x4c, 0x73, 0x56, 0x64, 0x8a, 0x7e, 0xcb, 0x1f, 0x0c, 0x2e, 0x14, 0x1a, 0x5c, 0xf7, 0xfe,
0xed, 0x37, 0x34, 0x51, 0xf8, 0xa3, 0xd5, 0xad, 0x5b, 0xa2, 0x0d, 0x06, 0x30, 0xc0, 0xe1, 0x19,
0xa3, 0x67, 0x0f, 0x35, 0x97, 0x30, 0xed, 0x2d, 0x7e, 0x25, 0xf5, 0xf9, 0xeb, 0xb3, 0x92, 0xdc,
0x97, 0x71, 0x82, 0x22, 0x8e, 0x17, 0x90, 0xee, 0x0c, 0x7b, 0xf2, 0x72, 0xd8, 0x36, 0xd0, 0x72,
0x09, 0xe7, 0xd1, 0xc7, 0x9f, 0x1e, 0x06, 0x1d, 0x76, 0x9c, 0xce, 0xe4, 0xdf, 0x3a, 0xbf, 0x18,
0x80, 0xc2, 0xfb, 0xeb, 0x98, 0xd5, 0x73, 0xc8, 0x42, 0x0e, 0xe8, 0x1c, 0x3a, 0xc1, 0xf2, 0xa4,
0xc8, 0xd4, 0x1e, 0x08, 0x49, 0x86, 0x75, 0xd1, 0xd2, 0xd4, 0x4c, 0xc5, 0x2a, 0xbc, 0x72, 0x5e,
0x7b, 0x7c, 0xa7, 0xdd, 0x8a, 0x16, 0xcb, 0xd4, 0x1e, 0xe0, 0x97, 0x00, 0xda, 0x39, 0xf4, 0x9f,
0x42, 0x77, 0x4c, 0x3b, 0x23, 0x24, 0x44, 0xcc, 0x5f, 0xc2, 0x93, 0x1d, 0xed, 0xb6, 0x77, 0x75,
0xd7, 0x88, 0x19, 0x35, 0xcc, 0x09, 0xfb, 0x40, 0x90, 0x7c, 0x05, 0xa7, 0xd1, 0xb8, 0xe3, 0x39,
0x24, 0xda, 0x18, 0xf2, 0x76, 0xb8, 0x56, 0xa0, 0xe4, 0x7b, 0x98, 0x8f, 0xfe, 0xbb, 0x91, 0x69,
0xf6, 0xc8, 0x74, 0x01, 0x69, 0xbc, 0xb7, 0xbf, 0x65, 0x14, 0x69, 0x79, 0x03, 0x67, 0x57, 0x4d,
0x13, 0x66, 0x0e, 0x31, 0x0d, 0xa7, 0xc3, 0xf6, 0xa7, 0xc3, 0xdf, 0x3c, 0x92, 0x15, 0x13, 0x32,
0xc8, 0xe3, 0xcc, 0x11, 0xa3, 0xc6, 0x6d, 0xf2, 0x27, 0x83, 0x67, 0x0a, 0xef, 0x8f, 0x98, 0xff,
0x9f, 0xc2, 0xbf, 0x7e, 0x71, 0x73, 0xf9, 0x79, 0xed, 0x57, 0x9b, 0xba, 0x34, 0xdd, 0xdd, 0xa2,
0xaa, 0x4c, 0xbb, 0x30, 0x2b, 0xbd, 0x6e, 0xab, 0x6a, 0x41, 0xbb, 0xd5, 0x27, 0xf4, 0xb9, 0x56,
0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xf3, 0x95, 0x98, 0xa9, 0xbf, 0x03, 0x00, 0x00,
}
......@@ -313,7 +313,7 @@ func (_m *Chain33Client) GetAddrOverview(ctx context.Context, in *types.ReqAddr,
}
// GetAllExecBalance provides a mock function with given fields: ctx, in, opts
func (_m *Chain33Client) GetAllExecBalance(ctx context.Context, in *types.ReqAddr, opts ...grpc.CallOption) (*types.AllExecBalance, error) {
func (_m *Chain33Client) GetAllExecBalance(ctx context.Context, in *types.ReqAllExecBalance, opts ...grpc.CallOption) (*types.AllExecBalance, error) {
_va := make([]interface{}, len(opts))
for _i := range opts {
_va[_i] = opts[_i]
......@@ -324,7 +324,7 @@ func (_m *Chain33Client) GetAllExecBalance(ctx context.Context, in *types.ReqAdd
ret := _m.Called(_ca...)
var r0 *types.AllExecBalance
if rf, ok := ret.Get(0).(func(context.Context, *types.ReqAddr, ...grpc.CallOption) *types.AllExecBalance); ok {
if rf, ok := ret.Get(0).(func(context.Context, *types.ReqAllExecBalance, ...grpc.CallOption) *types.AllExecBalance); ok {
r0 = rf(ctx, in, opts...)
} else {
if ret.Get(0) != nil {
......@@ -333,7 +333,7 @@ func (_m *Chain33Client) GetAllExecBalance(ctx context.Context, in *types.ReqAdd
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, *types.ReqAddr, ...grpc.CallOption) error); ok {
if rf, ok := ret.Get(1).(func(context.Context, *types.ReqAllExecBalance, ...grpc.CallOption) error); ok {
r1 = rf(ctx, in, opts...)
} else {
r1 = ret.Error(1)
......
......@@ -58,3 +58,13 @@ message AllExecBalance {
string addr = 1;
repeated ExecAccount ExecAccount = 2;
}
message ReqAllExecBalance {
//地址列表
string addr = 1;
//执行器名称
string execer = 2;
string stateHash = 3;
string asset_exec = 4;
string asset_symbol = 5;
}
\ No newline at end of file
......@@ -135,7 +135,7 @@ service chain33 {
rpc CloseQueue(ReqNil) returns (Reply) {}
//获取地址所以合约下的余额
rpc GetAllExecBalance(ReqAddr) returns (AllExecBalance) {}
rpc GetAllExecBalance(ReqAllExecBalance) returns (AllExecBalance) {}
//签名交易
rpc SignRawTx(ReqSignRawTx) returns (ReplySignRawTx) {}
......
......@@ -26,73 +26,73 @@ const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
func init() { proto.RegisterFile("rpc.proto", fileDescriptor_77a6da22d6a3feb1) }
var fileDescriptor_77a6da22d6a3feb1 = []byte{
// 1049 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x56, 0x6d, 0x6f, 0xdb, 0x36,
0x10, 0xd6, 0x87, 0xad, 0x69, 0x58, 0xc7, 0x71, 0x18, 0x37, 0x68, 0x85, 0x15, 0x05, 0x04, 0x0c,
0x1b, 0x30, 0xd4, 0x6e, 0xed, 0x2d, 0x7b, 0xe9, 0x36, 0x20, 0x4e, 0x66, 0xc7, 0x98, 0xeb, 0xb9,
0x91, 0xbb, 0x01, 0xfb, 0x46, 0xcb, 0x37, 0x47, 0x88, 0x4c, 0x2a, 0x22, 0x15, 0xcb, 0x3f, 0x76,
0xff, 0x65, 0x20, 0x25, 0xea, 0xdd, 0x49, 0xf6, 0xcd, 0xbc, 0xbb, 0xe7, 0x5e, 0x7c, 0xcf, 0xdd,
0x09, 0xed, 0x07, 0xbe, 0xd3, 0xf1, 0x03, 0x26, 0x18, 0xfe, 0x5c, 0x6c, 0x7d, 0xe0, 0x66, 0xc3,
0x61, 0xeb, 0x35, 0xa3, 0xb1, 0xd0, 0x3c, 0x12, 0x01, 0xa1, 0x9c, 0x38, 0xc2, 0x4d, 0x45, 0xad,
0x85, 0xc7, 0x9c, 0x1b, 0xe7, 0x9a, 0xb8, 0x5a, 0xd2, 0xd8, 0x10, 0xcf, 0x03, 0x91, 0xbc, 0xf6,
0xfd, 0x9e, 0x9f, 0xfc, 0x3c, 0x20, 0x8e, 0xc3, 0x42, 0xaa, 0x35, 0x4d, 0x88, 0xc0, 0x09, 0x05,
0x0b, 0xe2, 0x77, 0xef, 0xdf, 0x13, 0xb4, 0xa7, 0xfc, 0xf4, 0xfb, 0xf8, 0x0d, 0xda, 0x1f, 0x81,
0x18, 0x48, 0xd7, 0x1c, 0xb7, 0x3a, 0x2a, 0x97, 0xce, 0x15, 0xdc, 0xc6, 0x12, 0xb3, 0x91, 0x4a,
0x7c, 0x6f, 0x6b, 0x19, 0xb8, 0x8b, 0x0e, 0x46, 0x20, 0x26, 0x84, 0x8b, 0x4b, 0x20, 0x4b, 0x08,
0xf0, 0x41, 0x06, 0x99, 0xba, 0x9e, 0xa9, 0x9f, 0xb1, 0xd6, 0x32, 0xf0, 0x4f, 0xa8, 0x7d, 0x1e,
0x00, 0x11, 0x70, 0x45, 0x36, 0xf3, 0xac, 0x26, 0x7c, 0x98, 0x18, 0xc6, 0xca, 0x79, 0x64, 0x6a,
0xc1, 0x27, 0xca, 0xdd, 0x15, 0x9d, 0x47, 0x96, 0x81, 0x2f, 0x50, 0x2b, 0xc3, 0x46, 0xa3, 0x80,
0x85, 0x3e, 0x7e, 0x55, 0xc4, 0x65, 0x1e, 0x95, 0xba, 0xce, 0xcb, 0x77, 0x08, 0xdb, 0x40, 0x97,
0x3b, 0xe2, 0xdb, 0xee, 0x8a, 0xc2, 0x72, 0x1e, 0x55, 0x2a, 0xfd, 0x15, 0xb5, 0x3e, 0x86, 0x10,
0x6c, 0xf3, 0xa0, 0x66, 0x56, 0xec, 0x25, 0xe1, 0xd7, 0xe6, 0x8b, 0xe4, 0x9d, 0xb3, 0xb9, 0x00,
0x41, 0x5c, 0x4f, 0x85, 0x3d, 0x94, 0x61, 0xf3, 0x70, 0x5c, 0x35, 0xaf, 0x84, 0xfd, 0x05, 0xb5,
0x47, 0x20, 0x72, 0x16, 0x83, 0xed, 0xd9, 0x72, 0x19, 0xe4, 0x43, 0xcb, 0xb7, 0x79, 0x9c, 0xc7,
0xcd, 0xa3, 0x31, 0xfd, 0x87, 0x71, 0xcb, 0xc0, 0x23, 0x74, 0x52, 0x86, 0xcb, 0x4c, 0xa1, 0xd0,
0xdb, 0x58, 0x62, 0xbe, 0xdc, 0x95, 0xbd, 0x74, 0xf4, 0x0e, 0xa1, 0x11, 0x88, 0x0f, 0xb0, 0x9e,
0x31, 0xe6, 0x95, 0xbb, 0x8c, 0x8b, 0xc1, 0x27, 0x2e, 0x17, 0xaa, 0xe2, 0x67, 0x23, 0x10, 0x67,
0x31, 0xf5, 0x78, 0x19, 0xf3, 0x3c, 0x79, 0xfe, 0xa5, 0x38, 0xab, 0xad, 0x14, 0x43, 0xd0, 0x14,
0x36, 0x89, 0x00, 0xb7, 0x73, 0xa8, 0x54, 0x6a, 0xb6, 0xeb, 0xc0, 0x96, 0x81, 0xaf, 0xd0, 0xf3,
0x58, 0x94, 0xab, 0x41, 0x66, 0x83, 0x5f, 0x67, 0x6e, 0x6a, 0x0d, 0xcc, 0x93, 0x82, 0xc7, 0x79,
0x94, 0x55, 0x3e, 0x44, 0x07, 0xe3, 0xb5, 0xcf, 0x02, 0x31, 0x0b, 0xdc, 0xbb, 0x1b, 0xd8, 0xa6,
0x94, 0x4b, 0x7d, 0x15, 0xd4, 0x3b, 0x73, 0x1b, 0xa0, 0x03, 0x45, 0x00, 0x26, 0xfb, 0x05, 0x9c,
0x57, 0xfd, 0x14, 0xd4, 0x66, 0x2b, 0xff, 0xa7, 0xca, 0x16, 0x59, 0x06, 0xee, 0xa1, 0xa7, 0xb6,
0xcc, 0x6e, 0x08, 0x80, 0x4f, 0xaa, 0x70, 0x31, 0x04, 0xa8, 0x30, 0xe8, 0x3d, 0xda, 0xb3, 0xe5,
0x88, 0x2e, 0x3c, 0xfc, 0xa2, 0x06, 0x32, 0x21, 0x0b, 0xf0, 0xee, 0x49, 0xba, 0xf1, 0x01, 0x82,
0x15, 0x0c, 0x88, 0x47, 0xa8, 0x03, 0xf8, 0x8b, 0xb2, 0x87, 0xbc, 0xb6, 0xc8, 0x83, 0x98, 0x55,
0x96, 0x81, 0x4f, 0xd1, 0xbe, 0x0d, 0x62, 0x46, 0x38, 0xdf, 0x2c, 0xf1, 0xcb, 0x9a, 0x14, 0x62,
0x55, 0x25, 0xf1, 0x2f, 0xd1, 0x67, 0x13, 0xe6, 0xdc, 0x94, 0x89, 0x53, 0x36, 0x7b, 0x83, 0x9e,
0x7c, 0xa2, 0xca, 0xf0, 0xb8, 0x50, 0x44, 0x2c, 0xac, 0xd9, 0x58, 0x92, 0x95, 0x33, 0x80, 0x40,
0xce, 0x48, 0xd9, 0xb9, 0x5e, 0x03, 0x52, 0x9f, 0xd2, 0xb8, 0x99, 0xac, 0xb8, 0xff, 0xc5, 0xfe,
0xef, 0xd1, 0xe1, 0x08, 0x44, 0x52, 0xa3, 0x20, 0x22, 0xac, 0x4c, 0x40, 0x31, 0xdd, 0xd8, 0x46,
0xf1, 0xbf, 0xa5, 0x37, 0xf0, 0x1f, 0x77, 0x10, 0xdc, 0xb9, 0xb0, 0xa9, 0x2c, 0x1a, 0xdd, 0xae,
0x82, 0x95, 0x65, 0xe0, 0x1f, 0x54, 0x50, 0xc9, 0xa0, 0x3a, 0x68, 0x61, 0x51, 0xe4, 0x8d, 0xd4,
0x7c, 0x37, 0x74, 0x54, 0x19, 0x21, 0x9f, 0xeb, 0x98, 0x8a, 0x5a, 0x32, 0xbe, 0x43, 0x7b, 0x23,
0xa0, 0x36, 0xc0, 0x32, 0xdd, 0x64, 0xc9, 0x7b, 0x42, 0xe8, 0xaa, 0x08, 0x91, 0x52, 0x0d, 0x11,
0x25, 0x88, 0x7a, 0x0f, 0xb6, 0xb3, 0x4d, 0x2d, 0xa4, 0x8b, 0x9e, 0xda, 0xe4, 0x0e, 0x14, 0x46,
0xe7, 0xae, 0x05, 0x0a, 0x54, 0x6e, 0x70, 0x4f, 0x6d, 0x2a, 0x4d, 0xd8, 0xa3, 0xdc, 0x09, 0x4b,
0x58, 0xaa, 0x7b, 0x9c, 0xdb, 0x39, 0x3d, 0x84, 0xd4, 0x72, 0x3f, 0x97, 0x57, 0x30, 0xdd, 0x39,
0xea, 0xf5, 0x5b, 0x72, 0x2b, 0xeb, 0xe2, 0x48, 0x5d, 0xdc, 0xbd, 0x47, 0x62, 0x4e, 0x51, 0x33,
0x8e, 0xc3, 0x28, 0x07, 0xca, 0x43, 0xfe, 0x48, 0xdc, 0x8f, 0xe8, 0xa8, 0x72, 0xe0, 0xd2, 0xd2,
0xf4, 0xc9, 0x1c, 0xd3, 0xba, 0x73, 0xf7, 0x56, 0xd1, 0xf7, 0x12, 0xa2, 0x79, 0x14, 0xef, 0xfe,
0x0a, 0x99, 0x1a, 0xe9, 0x8d, 0x8e, 0x92, 0x03, 0xf9, 0xec, 0x22, 0x5c, 0xfb, 0x7a, 0xdd, 0xe5,
0x0e, 0x85, 0x2d, 0x02, 0x97, 0xae, 0x8a, 0x84, 0x8f, 0x65, 0x96, 0x81, 0x3b, 0x68, 0xef, 0x4f,
0x08, 0xb8, 0xcc, 0x6c, 0xc7, 0x80, 0x24, 0x6a, 0x39, 0x77, 0x96, 0x81, 0xbf, 0x42, 0x4f, 0xc6,
0xdc, 0xde, 0x52, 0xe7, 0xa1, 0x01, 0xef, 0xa2, 0xe6, 0x98, 0x4f, 0x85, 0x7f, 0x2e, 0xc9, 0xf9,
0x18, 0x40, 0x07, 0xed, 0x4d, 0x41, 0xd4, 0x8d, 0xb7, 0xce, 0x64, 0xca, 0x96, 0x90, 0x98, 0xa8,
0xbf, 0x48, 0x4e, 0xcd, 0x90, 0x08, 0xe2, 0x0d, 0x89, 0xeb, 0x85, 0x01, 0xec, 0x8a, 0x30, 0xa6,
0xa2, 0xdf, 0x53, 0x7f, 0x51, 0x3b, 0xd9, 0x09, 0x6a, 0x62, 0x6c, 0xb8, 0x0d, 0x41, 0xb2, 0x6d,
0x37, 0xec, 0xf4, 0x5b, 0xcb, 0xc0, 0x7d, 0x74, 0xa4, 0xe8, 0x1e, 0x5b, 0x3f, 0xd0, 0x0e, 0x0d,
0x7a, 0x9f, 0xed, 0x83, 0x7b, 0x8e, 0xf7, 0x71, 0x7e, 0x23, 0x64, 0xc7, 0xeb, 0xad, 0xfa, 0x3e,
0x4b, 0xc0, 0x36, 0xdc, 0xe2, 0x82, 0xf7, 0x94, 0x2f, 0xba, 0x0a, 0xcb, 0xc0, 0xdf, 0x20, 0x74,
0xee, 0x31, 0x0e, 0x1f, 0x43, 0x08, 0xe1, 0xa1, 0x7f, 0xfa, 0x67, 0x55, 0xd0, 0x99, 0xe7, 0x49,
0xe6, 0xea, 0x91, 0x2b, 0x6f, 0x1c, 0x7d, 0xe9, 0x8b, 0x66, 0x8a, 0xd5, 0xfb, 0xf2, 0x73, 0x4b,
0x7d, 0xcd, 0xe1, 0xe3, 0x1c, 0xcd, 0xb4, 0x30, 0x85, 0xc6, 0x4c, 0xd3, 0x62, 0xcb, 0xc0, 0x63,
0x64, 0xc6, 0xb4, 0x9f, 0xb2, 0xc4, 0x5f, 0xdd, 0x87, 0x55, 0xa6, 0xbc, 0xc7, 0xd5, 0x29, 0x6a,
0xa8, 0x99, 0xbc, 0x22, 0x74, 0x39, 0x0d, 0xd7, 0x38, 0x63, 0xf7, 0xad, 0x14, 0xa9, 0x9e, 0xd4,
0xad, 0xbf, 0xaf, 0xd5, 0x2e, 0x1b, 0xb2, 0xa0, 0x70, 0xa1, 0x7e, 0x87, 0x6d, 0xb9, 0x83, 0x83,
0xd7, 0x7f, 0xbf, 0x5a, 0xb9, 0xe2, 0x3a, 0x5c, 0x74, 0x1c, 0xb6, 0xee, 0xf6, 0xfb, 0x0e, 0xed,
0x26, 0x9f, 0xdb, 0x5d, 0x65, 0xb8, 0x78, 0xa2, 0xbe, 0xc3, 0xfb, 0xff, 0x05, 0x00, 0x00, 0xff,
0xff, 0xf5, 0xb2, 0x51, 0x39, 0x06, 0x0c, 0x00, 0x00,
// 1052 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x56, 0xdb, 0x6e, 0xdb, 0x46,
0x13, 0xe6, 0xc5, 0xff, 0xdb, 0xf1, 0x46, 0x96, 0xe5, 0xb5, 0x62, 0x24, 0x44, 0x83, 0x00, 0x04,
0x8a, 0x16, 0x28, 0x22, 0x25, 0x52, 0xeb, 0x1e, 0x82, 0x16, 0xb0, 0xec, 0x4a, 0x16, 0xaa, 0xa8,
0x8a, 0xa9, 0xb4, 0x40, 0xef, 0x56, 0xd4, 0x54, 0x26, 0x4c, 0xed, 0xd2, 0xdc, 0xa5, 0x45, 0x3d,
0x71, 0x5f, 0xa3, 0xd8, 0x25, 0x97, 0x67, 0xd9, 0xee, 0x9d, 0x76, 0x66, 0xbe, 0x39, 0x68, 0xbe,
0x99, 0x21, 0x3a, 0x08, 0x7c, 0xa7, 0xe3, 0x07, 0x4c, 0x30, 0xfc, 0x7f, 0xb1, 0xf5, 0x81, 0x9b,
0x0d, 0x87, 0xad, 0xd7, 0x8c, 0xc6, 0x42, 0xf3, 0x58, 0x04, 0x84, 0x72, 0xe2, 0x08, 0x37, 0x15,
0xb5, 0x16, 0x1e, 0x73, 0x6e, 0x9d, 0x1b, 0xe2, 0x6a, 0x49, 0x63, 0x43, 0x3c, 0x0f, 0x44, 0xf2,
0x3a, 0xf0, 0x7b, 0x7e, 0xf2, 0xf3, 0x90, 0x38, 0x0e, 0x0b, 0xa9, 0xd6, 0x34, 0x21, 0x02, 0x27,
0x14, 0x2c, 0x88, 0xdf, 0xbd, 0x7f, 0x4e, 0xd1, 0xbe, 0xf2, 0xd3, 0xef, 0xe3, 0xb7, 0xe8, 0x60,
0x04, 0x62, 0x20, 0x5d, 0x73, 0xdc, 0xea, 0xa8, 0x5c, 0x3a, 0xd7, 0x70, 0x17, 0x4b, 0xcc, 0x46,
0x2a, 0xf1, 0xbd, 0xad, 0x65, 0xe0, 0x2e, 0x3a, 0x1c, 0x81, 0x98, 0x10, 0x2e, 0xae, 0x80, 0x2c,
0x21, 0xc0, 0x87, 0x19, 0x64, 0xea, 0x7a, 0xa6, 0x7e, 0xc6, 0x5a, 0xcb, 0xc0, 0x3f, 0xa1, 0xf6,
0x45, 0x00, 0x44, 0xc0, 0x35, 0xd9, 0xcc, 0xb3, 0x9a, 0xf0, 0x51, 0x62, 0x18, 0x2b, 0xe7, 0x91,
0xa9, 0x05, 0x9f, 0x29, 0x77, 0x57, 0x74, 0x1e, 0x59, 0x06, 0xbe, 0x44, 0xad, 0x0c, 0x1b, 0x8d,
0x02, 0x16, 0xfa, 0xf8, 0x75, 0x11, 0x97, 0x79, 0x54, 0xea, 0x3a, 0x2f, 0xdf, 0x21, 0x6c, 0x03,
0x5d, 0xee, 0x88, 0x6f, 0xbb, 0x2b, 0x0a, 0xcb, 0x79, 0x54, 0xa9, 0xf4, 0x17, 0xd4, 0xfa, 0x14,
0x42, 0xb0, 0xcd, 0x83, 0x9a, 0x59, 0xb1, 0x57, 0x84, 0xdf, 0x98, 0x2f, 0x93, 0x77, 0xce, 0xe6,
0x12, 0x04, 0x71, 0x3d, 0x15, 0xf6, 0x48, 0x86, 0xcd, 0xc3, 0x71, 0xd5, 0xbc, 0x12, 0xf6, 0x67,
0xd4, 0x1e, 0x81, 0xc8, 0x59, 0x0c, 0xb6, 0xe7, 0xcb, 0x65, 0x90, 0x0f, 0x2d, 0xdf, 0xe6, 0x49,
0x1e, 0x37, 0x8f, 0xc6, 0xf4, 0x6f, 0xc6, 0x2d, 0x03, 0x8f, 0xd0, 0x69, 0x19, 0x2e, 0x33, 0x85,
0x42, 0x6f, 0x63, 0x89, 0xf9, 0x6a, 0x57, 0xf6, 0xd2, 0xd1, 0x7b, 0x84, 0x46, 0x20, 0x3e, 0xc2,
0x7a, 0xc6, 0x98, 0x57, 0xee, 0x32, 0x2e, 0x06, 0x9f, 0xb8, 0x5c, 0xa8, 0x8a, 0x9f, 0x8f, 0x40,
0x9c, 0xc7, 0xd4, 0xe3, 0x65, 0xcc, 0x8b, 0xe4, 0xf9, 0xa7, 0xe2, 0xac, 0xb6, 0x52, 0x0c, 0x41,
0x53, 0xd8, 0x24, 0x02, 0xdc, 0xce, 0xa1, 0x52, 0xa9, 0xd9, 0xae, 0x03, 0x5b, 0x06, 0xbe, 0x46,
0x2f, 0x62, 0x51, 0xae, 0x06, 0x99, 0x0d, 0x7e, 0x93, 0xb9, 0xa9, 0x35, 0x30, 0x4f, 0x0b, 0x1e,
0xe7, 0x51, 0x56, 0xf9, 0x10, 0x1d, 0x8e, 0xd7, 0x3e, 0x0b, 0xc4, 0x2c, 0x70, 0xef, 0x6f, 0x61,
0x9b, 0x52, 0x2e, 0xf5, 0x55, 0x50, 0xef, 0xcc, 0x6d, 0x80, 0x0e, 0x15, 0x01, 0x98, 0xec, 0x17,
0x70, 0x5e, 0xf5, 0x53, 0x50, 0x9b, 0xad, 0xfc, 0x9f, 0x2a, 0x5b, 0x64, 0x19, 0xb8, 0x87, 0x9e,
0xd9, 0x32, 0xbb, 0x21, 0x00, 0x3e, 0xad, 0xc2, 0xc5, 0x10, 0xa0, 0xc2, 0xa0, 0x0f, 0x68, 0xdf,
0x96, 0x23, 0xba, 0xf0, 0xf0, 0xcb, 0x1a, 0xc8, 0x84, 0x2c, 0xc0, 0x7b, 0x20, 0xe9, 0xc6, 0x47,
0x08, 0x56, 0x30, 0x20, 0x1e, 0xa1, 0x0e, 0xe0, 0x2f, 0xca, 0x1e, 0xf2, 0xda, 0x22, 0x0f, 0x62,
0x56, 0x59, 0x06, 0x3e, 0x43, 0x07, 0x36, 0x88, 0x19, 0xe1, 0x7c, 0xb3, 0xc4, 0xaf, 0x6a, 0x52,
0x88, 0x55, 0x95, 0xc4, 0xbf, 0x44, 0xff, 0x9b, 0x30, 0xe7, 0xb6, 0x4c, 0x9c, 0xb2, 0xd9, 0x5b,
0xb4, 0xf7, 0x99, 0x2a, 0xc3, 0x93, 0x42, 0x11, 0xb1, 0xb0, 0x66, 0x63, 0x49, 0x56, 0xce, 0x00,
0x02, 0x39, 0x23, 0x65, 0xe7, 0x7a, 0x0d, 0x48, 0x7d, 0x4a, 0xe3, 0x66, 0xb2, 0xe2, 0xfe, 0x13,
0xfb, 0xbf, 0x47, 0x47, 0x23, 0x10, 0x49, 0x8d, 0x82, 0x88, 0xb0, 0x32, 0x01, 0xc5, 0x74, 0x63,
0x1b, 0xc5, 0xff, 0x96, 0xde, 0xc0, 0xbf, 0xdf, 0x43, 0x70, 0xef, 0xc2, 0xa6, 0xb2, 0x68, 0x74,
0xbb, 0x0a, 0x56, 0x96, 0x81, 0x7f, 0x50, 0x41, 0x25, 0x83, 0xea, 0xa0, 0x85, 0x45, 0x91, 0x37,
0x52, 0xf3, 0xdd, 0xd0, 0x51, 0x65, 0x84, 0x7c, 0xae, 0x63, 0x2a, 0x6a, 0xc9, 0xf8, 0x1e, 0xed,
0x8f, 0x80, 0xda, 0x00, 0xcb, 0x74, 0x93, 0x25, 0xef, 0x09, 0xa1, 0xab, 0x22, 0x44, 0x4a, 0x35,
0x44, 0x94, 0x20, 0xea, 0x3d, 0xd8, 0xce, 0x36, 0xb5, 0x90, 0x2e, 0x7a, 0x66, 0x93, 0x7b, 0x50,
0x18, 0x9d, 0xbb, 0x16, 0x28, 0x50, 0xb9, 0xc1, 0x3d, 0xb5, 0xa9, 0x34, 0x61, 0x8f, 0x73, 0x27,
0x2c, 0x61, 0xa9, 0xee, 0x71, 0x6e, 0xe7, 0xf4, 0x10, 0x52, 0xcb, 0xfd, 0x42, 0x5e, 0xc1, 0x74,
0xe7, 0xa8, 0xd7, 0xaf, 0xc9, 0xad, 0xac, 0x8b, 0x23, 0x75, 0x71, 0xf7, 0x9e, 0x88, 0x39, 0x43,
0xcd, 0x38, 0x0e, 0xa3, 0x1c, 0x28, 0x0f, 0xf9, 0x13, 0x71, 0x3f, 0xa2, 0xe3, 0xca, 0x81, 0x4b,
0x4b, 0xd3, 0x27, 0x73, 0x4c, 0xeb, 0xce, 0xdd, 0x3b, 0x45, 0xdf, 0x2b, 0x88, 0xe6, 0x51, 0xbc,
0xfb, 0x2b, 0x64, 0x6a, 0xa4, 0x37, 0x3a, 0x4a, 0x0e, 0xe4, 0xf3, 0xcb, 0x70, 0xed, 0xeb, 0x75,
0x97, 0x3b, 0x14, 0xb6, 0x08, 0x5c, 0xba, 0x2a, 0x12, 0x3e, 0x96, 0x59, 0x06, 0xee, 0xa0, 0xfd,
0x3f, 0x20, 0xe0, 0x32, 0xb3, 0x1d, 0x03, 0x92, 0xa8, 0xe5, 0xdc, 0x59, 0x06, 0xfe, 0x0a, 0xed,
0x8d, 0xb9, 0xbd, 0xa5, 0xce, 0x63, 0x03, 0xde, 0x45, 0xcd, 0x31, 0x9f, 0x0a, 0xff, 0x42, 0x92,
0xf3, 0x29, 0x80, 0x0e, 0xda, 0x9f, 0x82, 0xa8, 0x1b, 0x6f, 0x9d, 0xc9, 0x94, 0x2d, 0x21, 0x31,
0x51, 0x7f, 0x91, 0x9c, 0x9a, 0x21, 0x11, 0xc4, 0x1b, 0x12, 0xd7, 0x0b, 0x03, 0xd8, 0x15, 0x61,
0x4c, 0x45, 0xbf, 0xa7, 0xfe, 0xa2, 0x76, 0xb2, 0x13, 0xd4, 0xc4, 0xd8, 0x70, 0x17, 0x82, 0x64,
0xdb, 0x6e, 0xd8, 0xd9, 0xb7, 0x96, 0x81, 0xfb, 0xe8, 0x58, 0xd1, 0x3d, 0xb6, 0x7e, 0xa4, 0x1d,
0x1a, 0xf4, 0x21, 0xdb, 0x07, 0x0f, 0x1c, 0xef, 0x93, 0xfc, 0x46, 0xc8, 0x8e, 0xd7, 0x3b, 0xf5,
0x7d, 0x96, 0x80, 0x6d, 0xb8, 0xc3, 0x05, 0xef, 0x29, 0x5f, 0x74, 0x15, 0x96, 0x81, 0xbf, 0x41,
0xe8, 0xc2, 0x63, 0x1c, 0x3e, 0x85, 0x10, 0xc2, 0x63, 0xff, 0xf4, 0x50, 0x15, 0x74, 0xee, 0x79,
0x92, 0xb9, 0x7a, 0xe4, 0x72, 0x57, 0xa6, 0xa8, 0x49, 0x6f, 0x7e, 0x51, 0xac, 0xf8, 0x7d, 0x20,
0x3f, 0xbc, 0xd4, 0x77, 0x1d, 0x3e, 0xc9, 0x11, 0x4e, 0x0b, 0x53, 0x68, 0xcc, 0x39, 0x2d, 0xb6,
0x0c, 0x3c, 0x46, 0x66, 0x3c, 0x00, 0x53, 0x96, 0xf8, 0xab, 0xfb, 0xc4, 0xca, 0x94, 0x0f, 0xb8,
0x3a, 0x43, 0x0d, 0x35, 0x9d, 0xd7, 0x84, 0x2e, 0xa7, 0xe1, 0x1a, 0x67, 0x3c, 0xbf, 0x93, 0x22,
0xd5, 0x9d, 0xba, 0x45, 0xf8, 0xb5, 0xda, 0x6a, 0x43, 0x16, 0x14, 0x6e, 0xd5, 0x6f, 0xb0, 0x2d,
0xf7, 0x72, 0xf0, 0xe6, 0xaf, 0xd7, 0x2b, 0x57, 0xdc, 0x84, 0x8b, 0x8e, 0xc3, 0xd6, 0xdd, 0x7e,
0xdf, 0xa1, 0xdd, 0xe4, 0xc3, 0xbb, 0xab, 0x0c, 0x17, 0x7b, 0xea, 0x8b, 0xbc, 0xff, 0x6f, 0x00,
0x00, 0x00, 0xff, 0xff, 0x54, 0xb6, 0x1e, 0x9c, 0x10, 0x0c, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
......@@ -199,7 +199,7 @@ type Chain33Client interface {
//关闭chain33
CloseQueue(ctx context.Context, in *ReqNil, opts ...grpc.CallOption) (*Reply, error)
//获取地址所以合约下的余额
GetAllExecBalance(ctx context.Context, in *ReqAddr, opts ...grpc.CallOption) (*AllExecBalance, error)
GetAllExecBalance(ctx context.Context, in *ReqAllExecBalance, opts ...grpc.CallOption) (*AllExecBalance, error)
//签名交易
SignRawTx(ctx context.Context, in *ReqSignRawTx, opts ...grpc.CallOption) (*ReplySignRawTx, error)
CreateNoBalanceTransaction(ctx context.Context, in *NoBalanceTx, opts ...grpc.CallOption) (*ReplySignRawTx, error)
......@@ -640,7 +640,7 @@ func (c *chain33Client) CloseQueue(ctx context.Context, in *ReqNil, opts ...grpc
return out, nil
}
func (c *chain33Client) GetAllExecBalance(ctx context.Context, in *ReqAddr, opts ...grpc.CallOption) (*AllExecBalance, error) {
func (c *chain33Client) GetAllExecBalance(ctx context.Context, in *ReqAllExecBalance, opts ...grpc.CallOption) (*AllExecBalance, error) {
out := new(AllExecBalance)
err := c.cc.Invoke(ctx, "/types.chain33/GetAllExecBalance", in, out, opts...)
if err != nil {
......@@ -779,7 +779,7 @@ type Chain33Server interface {
//关闭chain33
CloseQueue(context.Context, *ReqNil) (*Reply, error)
//获取地址所以合约下的余额
GetAllExecBalance(context.Context, *ReqAddr) (*AllExecBalance, error)
GetAllExecBalance(context.Context, *ReqAllExecBalance) (*AllExecBalance, error)
//签名交易
SignRawTx(context.Context, *ReqSignRawTx) (*ReplySignRawTx, error)
CreateNoBalanceTransaction(context.Context, *NoBalanceTx) (*ReplySignRawTx, error)
......@@ -1640,7 +1640,7 @@ func _Chain33_CloseQueue_Handler(srv interface{}, ctx context.Context, dec func(
}
func _Chain33_GetAllExecBalance_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ReqAddr)
in := new(ReqAllExecBalance)
if err := dec(in); err != nil {
return nil, err
}
......@@ -1652,7 +1652,7 @@ func _Chain33_GetAllExecBalance_Handler(srv interface{}, ctx context.Context, de
FullMethod: "/types.chain33/GetAllExecBalance",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(Chain33Server).GetAllExecBalance(ctx, req.(*ReqAddr))
return srv.(Chain33Server).GetAllExecBalance(ctx, req.(*ReqAllExecBalance))
}
return interceptor(ctx, in, info, handler)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment