Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sidecar
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
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
link33
sidecar
Commits
f07ce479
Commit
f07ce479
authored
Sep 02, 2021
by
suyanlong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed index to nonce
parent
84cfcec4
Pipeline
#7931
canceled with stages
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
61 additions
and
59 deletions
+61
-59
appchain.go
internal/appchain/appchain.go
+6
-5
executor.go
internal/appchain/executor.go
+3
-3
monitor.go
internal/appchain/monitor.go
+1
-0
ibtp.go
model/pb/ibtp.go
+2
-2
ibtp.pb.go
model/pb/ibtp.pb.go
+48
-48
ibtp.proto
model/pb/ibtp.proto
+1
-1
No files found.
internal/appchain/appchain.go
View file @
f07ce479
...
@@ -85,7 +85,7 @@ func (a *appChain) ExecuteIBTP(ibtp *pb.IBTP) (*pb.IBTP, error) {
...
@@ -85,7 +85,7 @@ func (a *appChain) ExecuteIBTP(ibtp *pb.IBTP) (*pb.IBTP, error) {
return
nil
,
fmt
.
Errorf
(
"nil ibtp structure"
)
return
nil
,
fmt
.
Errorf
(
"nil ibtp structure"
)
}
}
a
.
logger
.
WithFields
(
logrus
.
Fields
{
a
.
logger
.
WithFields
(
logrus
.
Fields
{
"index"
:
ibtp
.
Index
,
"index"
:
ibtp
.
Nonce
,
"type"
:
ibtp
.
Type
,
"type"
:
ibtp
.
Type
,
"from"
:
ibtp
.
From
,
"from"
:
ibtp
.
From
,
"id"
:
ibtp
.
ID
(),
"id"
:
ibtp
.
ID
(),
...
@@ -106,7 +106,7 @@ func (a *appChain) applyInterchainIBTP(ibtp *pb.IBTP) (*pb.IBTP, error) {
...
@@ -106,7 +106,7 @@ func (a *appChain) applyInterchainIBTP(ibtp *pb.IBTP) (*pb.IBTP, error) {
entry
:=
a
.
logger
.
WithFields
(
logrus
.
Fields
{
entry
:=
a
.
logger
.
WithFields
(
logrus
.
Fields
{
"from"
:
ibtp
.
From
,
"from"
:
ibtp
.
From
,
"type"
:
ibtp
.
Type
,
"type"
:
ibtp
.
Type
,
"index"
:
ibtp
.
Index
,
"index"
:
ibtp
.
Nonce
,
})
})
// todo: deal with plugin returned error
// todo: deal with plugin returned error
...
@@ -180,7 +180,7 @@ func (a *appChain) execCallback(ibtp *pb.IBTP) error {
...
@@ -180,7 +180,7 @@ func (a *appChain) execCallback(ibtp *pb.IBTP) error {
// executor should not change the content of ibtp
// executor should not change the content of ibtp
ibtp
.
From
,
ibtp
.
To
=
ibtp
.
To
,
ibtp
.
From
ibtp
.
From
,
ibtp
.
To
=
ibtp
.
To
,
ibtp
.
From
a
.
logger
.
WithFields
(
logrus
.
Fields
{
a
.
logger
.
WithFields
(
logrus
.
Fields
{
"index"
:
ibtp
.
Index
,
"index"
:
ibtp
.
Nonce
,
"type"
:
ibtp
.
Type
,
"type"
:
ibtp
.
Type
,
"status"
:
resp
.
Status
,
"status"
:
resp
.
Status
,
"msg"
:
resp
.
Message
,
"msg"
:
resp
.
Message
,
...
@@ -210,7 +210,7 @@ func (a *appChain) execRollback(ibtp *pb.IBTP, isSrcChain bool) error {
...
@@ -210,7 +210,7 @@ func (a *appChain) execRollback(ibtp *pb.IBTP, isSrcChain bool) error {
}
}
a
.
logger
.
WithFields
(
logrus
.
Fields
{
a
.
logger
.
WithFields
(
logrus
.
Fields
{
"index"
:
ibtp
.
Index
,
"index"
:
ibtp
.
Nonce
,
"type"
:
ibtp
.
Type
,
"type"
:
ibtp
.
Type
,
"status"
:
resp
.
Status
,
"status"
:
resp
.
Status
,
"msg"
:
resp
.
Message
,
"msg"
:
resp
.
Message
,
...
@@ -254,6 +254,7 @@ func (a *appChain) ListenIBTP() <-chan *pb.IBTP {
...
@@ -254,6 +254,7 @@ func (a *appChain) ListenIBTP() <-chan *pb.IBTP {
}
}
// QueryIBTP queries interchain tx recorded in appchain given ibtp id
// QueryIBTP queries interchain tx recorded in appchain given ibtp id
//func (a *appChain) QueryIBTP(to string,id string) (*pb.IBTP, error) {
func
(
a
*
appChain
)
QueryIBTP
(
id
string
)
(
*
pb
.
IBTP
,
error
)
{
func
(
a
*
appChain
)
QueryIBTP
(
id
string
)
(
*
pb
.
IBTP
,
error
)
{
// TODO(xcc): Encapsulate as a function
// TODO(xcc): Encapsulate as a function
args
:=
strings
.
Split
(
id
,
"-"
)
args
:=
strings
.
Split
(
id
,
"-"
)
...
@@ -317,7 +318,7 @@ func (a *appChain) QueryOuterMeta() map[string]uint64 {
...
@@ -317,7 +318,7 @@ func (a *appChain) QueryOuterMeta() map[string]uint64 {
func
(
a
*
appChain
)
handleIBTP
(
ibtp
*
pb
.
IBTP
)
{
func
(
a
*
appChain
)
handleIBTP
(
ibtp
*
pb
.
IBTP
)
{
if
err
:=
a
.
encryption
(
ibtp
);
err
!=
nil
{
if
err
:=
a
.
encryption
(
ibtp
);
err
!=
nil
{
a
.
logger
.
WithFields
(
logrus
.
Fields
{
a
.
logger
.
WithFields
(
logrus
.
Fields
{
"index"
:
ibtp
.
Index
,
"index"
:
ibtp
.
Nonce
,
"to"
:
ibtp
.
To
,
"to"
:
ibtp
.
To
,
})
.
Error
(
"check encryption"
)
})
.
Error
(
"check encryption"
)
return
return
...
...
internal/appchain/executor.go
View file @
f07ce479
...
@@ -13,6 +13,9 @@ type Executor interface {
...
@@ -13,6 +13,9 @@ type Executor interface {
// Rollback rollbacks ibtp on appchain
// Rollback rollbacks ibtp on appchain
Rollback
(
ibtp
*
pb
.
IBTP
,
isSrcChain
bool
)
Rollback
(
ibtp
*
pb
.
IBTP
,
isSrcChain
bool
)
// QueryIBTPReceipt query receipt for original interchain ibtp
QueryIBTPReceipt
(
originalIBTP
*
pb
.
IBTP
)
(
*
pb
.
IBTP
,
error
)
// QueryInterchainMeta queries latest index map of ibtps executed on appchain
// QueryInterchainMeta queries latest index map of ibtps executed on appchain
// For the returned map, key is the source chain ID,
// For the returned map, key is the source chain ID,
// and value is the latest index of tx executed on appchain
// and value is the latest index of tx executed on appchain
...
@@ -22,7 +25,4 @@ type Executor interface {
...
@@ -22,7 +25,4 @@ type Executor interface {
// For the returned map, key is the destination chain ID,
// For the returned map, key is the destination chain ID,
// and value is the latest index of callback executed on appchain
// and value is the latest index of callback executed on appchain
QueryCallbackMeta
()
map
[
string
]
uint64
QueryCallbackMeta
()
map
[
string
]
uint64
// QueryIBTPReceipt query receipt for original interchain ibtp
QueryIBTPReceipt
(
originalIBTP
*
pb
.
IBTP
)
(
*
pb
.
IBTP
,
error
)
}
}
internal/appchain/monitor.go
View file @
f07ce479
...
@@ -7,6 +7,7 @@ type Monitor interface {
...
@@ -7,6 +7,7 @@ type Monitor interface {
// listen on interchain ibtp from appchain
// listen on interchain ibtp from appchain
ListenIBTP
()
<-
chan
*
pb
.
IBTP
ListenIBTP
()
<-
chan
*
pb
.
IBTP
// query historical ibtp by its id
// query historical ibtp by its id
//QueryIBTP(id string) (*pb.IBTP, error)
QueryIBTP
(
id
string
)
(
*
pb
.
IBTP
,
error
)
QueryIBTP
(
id
string
)
(
*
pb
.
IBTP
,
error
)
// QueryLatestMeta queries latest index map of ibtps threw on appchain
// QueryLatestMeta queries latest index map of ibtps threw on appchain
QueryOuterMeta
()
map
[
string
]
uint64
QueryOuterMeta
()
map
[
string
]
uint64
...
...
model/pb/ibtp.go
View file @
f07ce479
...
@@ -8,14 +8,14 @@ import (
...
@@ -8,14 +8,14 @@ import (
)
)
func
(
m
*
IBTP
)
ID
()
string
{
func
(
m
*
IBTP
)
ID
()
string
{
return
fmt
.
Sprintf
(
"%s-%s-%d"
,
m
.
From
,
m
.
To
,
m
.
Index
)
return
fmt
.
Sprintf
(
"%s-%s-%d"
,
m
.
From
,
m
.
To
,
m
.
Nonce
)
}
}
func
(
m
*
IBTP
)
Hash
()
*
types
.
Hash
{
func
(
m
*
IBTP
)
Hash
()
*
types
.
Hash
{
ibtp
:=
&
IBTP
{
ibtp
:=
&
IBTP
{
From
:
m
.
From
,
From
:
m
.
From
,
To
:
m
.
To
,
To
:
m
.
To
,
Index
:
m
.
Index
,
Nonce
:
m
.
Nonce
,
Type
:
m
.
Type
,
Type
:
m
.
Type
,
Timestamp
:
m
.
Timestamp
,
Timestamp
:
m
.
Timestamp
,
Payload
:
m
.
Payload
,
Payload
:
m
.
Payload
,
...
...
model/pb/ibtp.pb.go
View file @
f07ce479
...
@@ -97,7 +97,7 @@ type IBTP struct {
...
@@ -97,7 +97,7 @@ type IBTP struct {
// ID of receiving chain
// ID of receiving chain
To
string
`protobuf:"bytes,2,opt,name=to,proto3" json:"to,omitempty"`
To
string
`protobuf:"bytes,2,opt,name=to,proto3" json:"to,omitempty"`
// Index of inter-chain transaction
// Index of inter-chain transaction
Index
uint64
`protobuf:"varint,3,opt,name=index,proto3" json:"index
,omitempty"`
Nonce
uint64
`protobuf:"varint,3,opt,name=nonce,proto3" json:"nonce
,omitempty"`
// inter-chain transaction type
// inter-chain transaction type
Type
IBTP_Type
`protobuf:"varint,4,opt,name=type,proto3,enum=pb.IBTP_Type" json:"type,omitempty"`
Type
IBTP_Type
`protobuf:"varint,4,opt,name=type,proto3,enum=pb.IBTP_Type" json:"type,omitempty"`
// Timestamp of inter-chain events
// Timestamp of inter-chain events
...
@@ -161,9 +161,9 @@ func (m *IBTP) GetTo() string {
...
@@ -161,9 +161,9 @@ func (m *IBTP) GetTo() string {
return
""
return
""
}
}
func
(
m
*
IBTP
)
Get
Index
()
uint64
{
func
(
m
*
IBTP
)
Get
Nonce
()
uint64
{
if
m
!=
nil
{
if
m
!=
nil
{
return
m
.
Index
return
m
.
Nonce
}
}
return
0
return
0
}
}
...
@@ -425,44 +425,44 @@ func init() {
...
@@ -425,44 +425,44 @@ func init() {
func
init
()
{
proto
.
RegisterFile
(
"ibtp.proto"
,
fileDescriptor_7576a0a5bf0190a3
)
}
func
init
()
{
proto
.
RegisterFile
(
"ibtp.proto"
,
fileDescriptor_7576a0a5bf0190a3
)
}
var
fileDescriptor_7576a0a5bf0190a3
=
[]
byte
{
var
fileDescriptor_7576a0a5bf0190a3
=
[]
byte
{
// 58
5
bytes of a gzipped FileDescriptorProto
// 58
7
bytes of a gzipped FileDescriptorProto
0x1f
,
0x8b
,
0x08
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x02
,
0xff
,
0x6c
,
0x53
,
0xc
d
,
0x6e
,
0xd3
,
0x30
,
0x1f
,
0x8b
,
0x08
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x02
,
0xff
,
0x6c
,
0x53
,
0xc
f
,
0x6e
,
0xd3
,
0x3e
,
0x1c
,
0xaf
,
0xdb
,
0x
f4
,
0xeb
,
0xdf
,
0x6e
,
0x8b
,
0x3c
,
0x18
,
0x66
,
0x42
,
0x51
,
0xe8
,
0x01
,
0xc2
,
0x1c
,
0xaf
,
0xdb
,
0x
b4
,
0x4d
,
0xbf
,
0xed
,
0xb6
,
0xc8
,
0xfb
,
0xfd
,
0x86
,
0x99
,
0x50
,
0x14
,
0x7a
,
0x
a5
,
0x87
,
0x82
,
0xb8
,
0x77
,
0x99
,
0xc7
,
0x22
,
0x58
,
0x36
,
0x9c
,
0x54
,
0x70
,
0xab
,
0xf2
,
0xb5
,
0x
80
,
0x70
,
0xe9
,
0xa1
,
0x20
,
0xee
,
0x5d
,
0xe6
,
0xb1
,
0x08
,
0x96
,
0x0d
,
0x27
,
0x15
,
0xdc
,
0xaa
,
0x2
a
,
0x62
,
0x8b
,
0x23
,
0xc7
,
0x43
,
0xeb
,
0x5b
,
0xf0
,
0x1e
,
0xbc
,
0x08
,
0xc7
,
0x1d
,
0x39
,
0xa2
,
0x2
4
,
0xcd
,
0xaa
,
0x88
,
0x2d
,
0x8e
,
0x1c
,
0x0f
,
0xd1
,
0xb7
,
0xe0
,
0x3d
,
0x78
,
0x11
,
0x8e
,
0x3b
,
0x
ed
,
0xc4
,
0x85
,
0x67
,
0x40
,
0x76
,
0xda
,
0x6d
,
0x7c
,
0xdc
,
0xfc
,
0xfb
,
0xf2
,
0x3f
,
0xb1
,
0x7
f
,
0x
72
,
0x44
,
0xdb
,
0x89
,
0x0b
,
0xcf
,
0x80
,
0xec
,
0xb4
,
0xeb
,
0xf8
,
0x73
,
0xf3
,
0xe7
,
0x9f
,
0xb
f
,
0x
06
,
0xc8
,
0x63
,
0x59
,
0x8e
,
0x4b
,
0xc1
,
0x25
,
0xc7
,
0xcd
,
0x32
,
0xde
,
0x1d
,
0xc4
,
0x51
,
0x95
,
0x
89
,
0xfd
,
0x31
,
0x40
,
0x9e
,
0xc8
,
0x72
,
0x54
,
0x0a
,
0x2e
,
0x39
,
0x6e
,
0x96
,
0xc9
,
0x7e
,
0x3f
,
0x
27
,
0x35
,
0x31
,
0xfa
,
0xd5
,
0x02
,
0xc3
,
0xdb
,
0x0b
,
0x4f
,
0x30
,
0x06
,
0xe3
,
0x54
,
0xf0
,
0x73
,
0x
89
,
0xab
,
0x3c
,
0xad
,
0x89
,
0xe1
,
0xcf
,
0x16
,
0x18
,
0xfe
,
0x41
,
0x74
,
0x86
,
0x31
,
0x18
,
0xe7
,
0x82
,
0x
6c
,
0xe4
,
0xf4
,
0x99
,
0x5e
,
0xe3
,
0x4d
,
0x68
,
0x4a
,
0x4e
,
0x9a
,
0x9a
,
0x69
,
0x4a
,
0x8e
,
0x82
,
0x
5f
,
0x12
,
0xe4
,
0x20
,
0xb7
,
0xc7
,
0xf4
,
0x1a
,
0x6f
,
0x43
,
0x53
,
0x72
,
0xd2
,
0xd4
,
0x4c
,
0x
1f
,
0x40
,
0x3b
,
0x2f
,
0xd2
,
0xec
,
0x92
,
0xb4
,
0x6c
,
0xe4
,
0x18
,
0xac
,
0x06
,
0xf8
,
0x29
,
0x18
,
0x
53
,
0x72
,
0xfc
,
0x1f
,
0xb4
,
0x0b
,
0x5e
,
0xa4
,
0x19
,
0x69
,
0x39
,
0xc8
,
0x35
,
0x58
,
0x0d
,
0xf0
,
0x
72
,
0x59
,
0x66
,
0xc4
,
0xb0
,
0x91
,
0xb3
,
0x39
,
0xd9
,
0x18
,
0x97
,
0xf1
,
0x58
,
0xed
,
0x38
,
0x0e
,
0x
63
,
0x30
,
0xe4
,
0xb2
,
0xcc
,
0x88
,
0xe1
,
0x20
,
0x77
,
0x7b
,
0xbc
,
0x35
,
0x2a
,
0x93
,
0x91
,
0xda
,
0x
97
,
0x65
,
0xc6
,
0xb4
,
0x84
,
0x9f
,
0x40
,
0x5f
,
0xe6
,
0xe7
,
0x59
,
0x25
,
0xa3
,
0xf3
,
0x92
,
0xb4
,
0x
71
,
0x14
,
0x2d
,
0xcb
,
0x8c
,
0x69
,
0x09
,
0x3f
,
0x82
,
0x9e
,
0xcc
,
0x2f
,
0xb3
,
0x4a
,
0xc6
,
0x97
,
0x
6d
,
0xe4
,
0xb4
,
0xd8
,
0x1d
,
0xa1
,
0xb6
,
0x2d
,
0x05
,
0xe7
,
0xa7
,
0xa4
,
0x63
,
0x23
,
0x67
,
0xc8
,
0x
25
,
0x69
,
0x3b
,
0xc8
,
0x6d
,
0xb1
,
0x0d
,
0xa1
,
0xb6
,
0x2d
,
0x05
,
0xe7
,
0xe7
,
0xa4
,
0xe3
,
0x20
,
0x
6a
,
0x80
,
0x09
,
0x74
,
0xcb
,
0x68
,
0x79
,
0xc6
,
0xa3
,
0x94
,
0x74
,
0x35
,
0xbf
,
0x86
,
0xf8
,
0x05
,
0x
77
,
0xc0
,
0x6a
,
0x80
,
0x09
,
0x74
,
0xcb
,
0x78
,
0x79
,
0xc1
,
0xe3
,
0x39
,
0xe9
,
0x6a
,
0x7e
,
0x0d
,
0x
b4
,
0x17
,
0x82
,
0x5f
,
0x94
,
0xa4
,
0x67
,
0x23
,
0x67
,
0x30
,
0xd9
,
0x56
,
0x13
,
0x03
,
0x29
,
0xf2
,
0x
f1
,
0x33
,
0x68
,
0x2f
,
0x04
,
0xbf
,
0x2a
,
0x89
,
0xe9
,
0x20
,
0xb7
,
0x3f
,
0xde
,
0x55
,
0x13
,
0x43
,
0x
62
,
0x31
,
0xcb
,
0x0b
,
0xf9
,
0xfa
,
0xd5
,
0x51
,
0x54
,
0xb2
,
0xda
,
0xa1
,
0x36
,
0xf9
,
0x9c
,
0x8
9
,
0x
29
,
0xf2
,
0x62
,
0x31
,
0xcd
,
0x0b
,
0xf9
,
0xf2
,
0xc5
,
0x49
,
0x5c
,
0xb2
,
0xda
,
0xa1
,
0x36
,
0xf
9
,
0x
2a
,
0xe7
,
0x05
,
0xe9
,
0xeb
,
0xdf
,
0x58
,
0x43
,
0x35
,
0x34
,
0xbb
,
0x94
,
0x22
,
0x22
,
0x50
,
0x0f
,
0x
98
,
0x89
,
0x2a
,
0xe7
,
0x05
,
0xe9
,
0xe9
,
0xdf
,
0x58
,
0x43
,
0x35
,
0x34
,
0xfb
,
0x24
,
0x45
,
0x4c
,
0x
d5
,
0x60
,
0xf4
,
0x15
,
0x81
,
0xa1
,
0xbe
,
0x1b
,
0x6f
,
0x02
,
0x78
,
0x7e
,
0x48
,
0x99
,
0x7b
,
0x38
,
0x
a0
,
0x1e
,
0xaa
,
0xc1
,
0xf0
,
0x0b
,
0x02
,
0x43
,
0x7d
,
0x37
,
0xde
,
0x06
,
0xf0
,
0x83
,
0x88
,
0x32
,
0x
f5
,
0x7c
,
0xb3
,
0x81
,
0xb7
,
0x61
,
0x8b
,
0x51
,
0x97
,
0x7a
,
0x27
,
0xe1
,
0x3c
,
0x98
,
0xb9
,
0x2e
,
0x
ef
,
0x78
,
0xe2
,
0x07
,
0x56
,
0x03
,
0xef
,
0xc2
,
0x0e
,
0xa3
,
0x1e
,
0xf5
,
0xcf
,
0xa2
,
0x59
,
0x38
,
0x
0d
,
0x02
,
0x13
,
0xdd
,
0x27
,
0x0f
,
0xa6
,
0xde
,
0xbb
,
0x19
,
0xa3
,
0x66
,
0x13
,
0x3f
,
0x82
,
0xed
,
0x
f5
,
0x3c
,
0x1a
,
0x86
,
0x16
,
0xba
,
0x4f
,
0x1e
,
0x4d
,
0xfc
,
0x37
,
0x53
,
0x46
,
0xad
,
0x26
,
0x7e
,
0x
69
,
0x10
,
0xd0
,
0x70
,
0x4e
,
0x3f
,
0xba
,
0x87
,
0x53
,
0xff
,
0x0d
,
0x9d
,
0x7b
,
0xbe
,
0x17
,
0x9a
,
0x
00
,
0xbb
,
0x93
,
0x30
,
0xa4
,
0xd1
,
0x8c
,
0xbe
,
0xf7
,
0x8e
,
0x27
,
0xc1
,
0x2b
,
0x3a
,
0xf3
,
0x03
,
0x
2d
,
0xfc
,
0x18
,
0x1e
,
0xfe
,
0x25
,
0x30
,
0xba
,
0x4f
,
0xe9
,
0x91
,
0x69
,
0xfc
,
0x57
,
0x3a
,
0x98
,
0x
3f
,
0xb2
,
0x5a
,
0xf8
,
0x21
,
0xfc
,
0xff
,
0x87
,
0xc0
,
0xe8
,
0x21
,
0xa5
,
0x27
,
0x96
,
0xf1
,
0x4f
,
0x
f9
,
0xfb
,
0x66
,
0x1b
,
0xef
,
0xc2
,
0xce
,
0x3f
,
0x92
,
0x1e
,
0x69
,
0x76
,
0x46
,
0x13
,
0xe8
,
0xb9
,
0x
e9
,
0x68
,
0x1a
,
0x1c
,
0x5a
,
0x6d
,
0xbc
,
0x0f
,
0x7b
,
0x7f
,
0x49
,
0x7a
,
0xa4
,
0xd5
,
0x19
,
0x8e
,
0x
91
,
0xcc
,
0x16
,
0x5c
,
0x2c
,
0xf1
,
0x00
,
0xba
,
0x8c
,
0xbe
,
0x9f
,
0xd1
,
0x20
,
0x34
,
0x1b
,
0x78
,
0x
c1
,
0xf4
,
0x62
,
0x99
,
0x2d
,
0xb8
,
0x58
,
0xe2
,
0x3e
,
0x74
,
0x19
,
0x7d
,
0x3b
,
0xa5
,
0x61
,
0x64
,
0x
08
,
0x3d
,
0x46
,
0x83
,
0x93
,
0x63
,
0x3f
,
0xa0
,
0x26
,
0x52
,
0xd2
,
0xcc
,
0x7f
,
0xeb
,
0x1f
,
0x7f
,
0x
35
,
0xf0
,
0x00
,
0x4c
,
0x46
,
0xc3
,
0xb3
,
0xd3
,
0x20
,
0xa4
,
0x16
,
0x52
,
0xd2
,
0x34
,
0x78
,
0x1d
,
0x
f0
,
0xcd
,
0xe6
,
0x68
,
0x7a
,
0x7b
,
0xac
,
0xea
,
0x56
,
0xb2
,
0x22
,
0x11
,
0xcb
,
0x52
,
0x66
,
0xa9
,
0x
9c
,
0xbe
,
0x0b
,
0xac
,
0xe6
,
0x70
,
0x72
,
0x77
,
0xac
,
0xea
,
0x56
,
0xb2
,
0x22
,
0x15
,
0xcb
,
0x52
,
0x
be
,
0xf7
,
0x1e
,
0xbb
,
0x23
,
0xd4
,
0xd1
,
0x25
,
0xbc
,
0x90
,
0x59
,
0x21
,
0x75
,
0x03
,
0x86
,
0x6c
,
0x
66
,
0x73
,
0x7d
,
0xef
,
0x26
,
0xdb
,
0x10
,
0xea
,
0xe8
,
0x52
,
0x5e
,
0xc8
,
0xac
,
0x90
,
0xba
,
0x01
,
0x0
d
,
0x47
,
0x3f
,
0xd1
,
0xad
,
0x84
,
0x9f
,
0xc1
,
0x56
,
0x25
,
0x92
,
0xb9
,
0x82
,
0x22
,
0x4a
,
0xe4
,
0x0
3
,
0xb6
,
0x86
,
0xc3
,
0x1f
,
0xe8
,
0x4e
,
0xc2
,
0x4f
,
0x60
,
0xa7
,
0x12
,
0xe9
,
0x4c
,
0x41
,
0x11
,
0x
3c
,
0x4f
,
0x57
,
0x0d
,
0xda
,
0xa8
,
0x44
,
0xe2
,
0xae
,
0x58
,
0x2f
,
0x55
,
0xbe
,
0xb4
,
0x92
,
0x7f
,
0x
a7
,
0x72
,
0x96
,
0xcf
,
0x57
,
0x0d
,
0xda
,
0xaa
,
0x44
,
0xea
,
0xad
,
0x58
,
0x7f
,
0xae
,
0x7c
,
0xf3
,
0x
f8
,
0xea
,
0x5e
,
0x6d
,
0xa4
,
0x95
,
0xbc
,
0xe7
,
0x53
,
0x35
,
0xbc
,
0x28
,
0x12
,
0xdd
,
0x30
,
0x55
,
0x
4a
,
0xfe
,
0xe6
,
0xab
,
0x7b
,
0xb5
,
0x35
,
0xaf
,
0xe4
,
0x3d
,
0x9f
,
0xaa
,
0xe1
,
0x55
,
0x91
,
0xea
,
0x
c3
,
0x8b
,
0x22
,
0x51
,
0x5c
,
0x24
,
0x16
,
0x15
,
0x31
,
0xec
,
0x96
,
0x33
,
0x64
,
0x7a
,
0x8d
,
0x77
,
0x
86
,
0xa9
,
0x1a
,
0x5e
,
0x15
,
0xa9
,
0xe2
,
0x62
,
0xb1
,
0xa8
,
0x88
,
0xe1
,
0xb4
,
0xdc
,
0x01
,
0xd3
,
0x
a1
,
0x97
,
0x44
,
0x67
,
0x67
,
0x71
,
0x94
,
0x7c
,
0xd2
,
0x85
,
0xea
,
0xb3
,
0x5b
,
0x8c
,
0x77
,
0xa
0
,
0x
6b
,
0xbc
,
0x0f
,
0x66
,
0x1a
,
0x5f
,
0x5c
,
0x24
,
0x71
,
0xfa
,
0x41
,
0x17
,
0xaa
,
0xc7
,
0xee
,
0x3
0
,
0x
a3
,
0x3c
,
0x6e
,
0x4c
,
0x3a
,
0x3a
,
0xb1
,
0x42
,
0x2a
,
0x23
,
0xf8
,
0x2a
,
0xd3
,
0xad
,
0x33
,
0x6b
,
0x
de
,
0x83
,
0x8e
,
0xf2
,
0x78
,
0x09
,
0xe9
,
0xe8
,
0xc4
,
0x0a
,
0xa9
,
0x8c
,
0xe0
,
0xab
,
0x4c
,
0xb7
,
0x
bc
,
0xce
,
0xb0
,
0x98
,
0xf4
,
0xee
,
0x32
,
0x2c
,
0x1e
,
0x3d
,
0x87
,
0xb6
,
0x2a
,
0x73
,
0x85
,
0x2d
,
0x
ce
,
0xac
,
0xf1
,
0x3a
,
0xc3
,
0x12
,
0x62
,
0x6e
,
0x32
,
0x2c
,
0x19
,
0x3e
,
0x85
,
0xb6
,
0x2a
,
0x73
,
0x
68
,
0xab
,
0x77
,
0x54
,
0x11
,
0x64
,
0xb7
,
0x9c
,
0xc1
,
0xa4
,
0xb7
,
0xae
,
0x39
,
0xab
,
0xe9
,
0x3d
,
0x
85
,
0x6d
,
0x68
,
0xab
,
0x77
,
0x54
,
0x11
,
0xe4
,
0xb4
,
0xdc
,
0xfe
,
0xd8
,
0x5c
,
0xd7
,
0x9c
,
0xd5
,
0xf
2
,
0xed
,
0xda
,
0x42
,
0x57
,
0xd7
,
0x16
,
0xfa
,
0x71
,
0x6d
,
0xa1
,
0x2f
,
0x37
,
0x56
,
0xe3
,
0xea
,
0xf
4
,
0x01
,
0xf9
,
0x7a
,
0x63
,
0xa3
,
0xeb
,
0x1b
,
0x1b
,
0x7d
,
0xbf
,
0xb1
,
0xd1
,
0xe7
,
0x5b
,
0xbb
,
0x
c6
,
0x6a
,
0x7c
,
0xbf
,
0xb1
,
0x1a
,
0x71
,
0x47
,
0xbf
,
0xb4
,
0x97
,
0xbf
,
0x03
,
0x00
,
0x00
,
0xff
,
0x
71
,
0x7d
,
0x6b
,
0x37
,
0xbe
,
0xdd
,
0xda
,
0x8d
,
0xa4
,
0xa3
,
0x5f
,
0xda
,
0xf3
,
0x5f
,
0x01
,
0x00
,
0x
ff
,
0xe6
,
0x58
,
0x74
,
0xbc
,
0x88
,
0x03
,
0x00
,
0x00
,
0x
00
,
0xff
,
0xff
,
0x98
,
0x2d
,
0x3a
,
0x6f
,
0x88
,
0x03
,
0x00
,
0x00
,
}
}
func
(
m
*
IBTP
)
Marshal
()
(
dAtA
[]
byte
,
err
error
)
{
func
(
m
*
IBTP
)
Marshal
()
(
dAtA
[]
byte
,
err
error
)
{
...
@@ -535,8 +535,8 @@ func (m *IBTP) MarshalToSizedBuffer(dAtA []byte) (int, error) {
...
@@ -535,8 +535,8 @@ func (m *IBTP) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i
--
i
--
dAtA
[
i
]
=
0x20
dAtA
[
i
]
=
0x20
}
}
if
m
.
Index
!=
0
{
if
m
.
Nonce
!=
0
{
i
=
encodeVarintIbtp
(
dAtA
,
i
,
uint64
(
m
.
Index
))
i
=
encodeVarintIbtp
(
dAtA
,
i
,
uint64
(
m
.
Nonce
))
i
--
i
--
dAtA
[
i
]
=
0x18
dAtA
[
i
]
=
0x18
}
}
...
@@ -744,8 +744,8 @@ func (m *IBTP) Size() (n int) {
...
@@ -744,8 +744,8 @@ func (m *IBTP) Size() (n int) {
if
l
>
0
{
if
l
>
0
{
n
+=
1
+
l
+
sovIbtp
(
uint64
(
l
))
n
+=
1
+
l
+
sovIbtp
(
uint64
(
l
))
}
}
if
m
.
Index
!=
0
{
if
m
.
Nonce
!=
0
{
n
+=
1
+
sovIbtp
(
uint64
(
m
.
Index
))
n
+=
1
+
sovIbtp
(
uint64
(
m
.
Nonce
))
}
}
if
m
.
Type
!=
0
{
if
m
.
Type
!=
0
{
n
+=
1
+
sovIbtp
(
uint64
(
m
.
Type
))
n
+=
1
+
sovIbtp
(
uint64
(
m
.
Type
))
...
@@ -955,9 +955,9 @@ func (m *IBTP) Unmarshal(dAtA []byte) error {
...
@@ -955,9 +955,9 @@ func (m *IBTP) Unmarshal(dAtA []byte) error {
iNdEx
=
postIndex
iNdEx
=
postIndex
case
3
:
case
3
:
if
wireType
!=
0
{
if
wireType
!=
0
{
return
fmt
.
Errorf
(
"proto: wrong wireType = %d for field
Index
"
,
wireType
)
return
fmt
.
Errorf
(
"proto: wrong wireType = %d for field
Nonce
"
,
wireType
)
}
}
m
.
Index
=
0
m
.
Nonce
=
0
for
shift
:=
uint
(
0
);
;
shift
+=
7
{
for
shift
:=
uint
(
0
);
;
shift
+=
7
{
if
shift
>=
64
{
if
shift
>=
64
{
return
ErrIntOverflowIbtp
return
ErrIntOverflowIbtp
...
@@ -967,7 +967,7 @@ func (m *IBTP) Unmarshal(dAtA []byte) error {
...
@@ -967,7 +967,7 @@ func (m *IBTP) Unmarshal(dAtA []byte) error {
}
}
b
:=
dAtA
[
iNdEx
]
b
:=
dAtA
[
iNdEx
]
iNdEx
++
iNdEx
++
m
.
Index
|=
uint64
(
b
&
0x7F
)
<<
shift
m
.
Nonce
|=
uint64
(
b
&
0x7F
)
<<
shift
if
b
<
0x80
{
if
b
<
0x80
{
break
break
}
}
...
...
model/pb/ibtp.proto
View file @
f07ce479
...
@@ -27,7 +27,7 @@ message IBTP {
...
@@ -27,7 +27,7 @@ message IBTP {
// ID of receiving chain
// ID of receiving chain
string
to
=
2
;
string
to
=
2
;
// Index of inter-chain transaction
// Index of inter-chain transaction
uint64
index
=
3
;
uint64
nonce
=
3
;
// inter-chain transaction type
// inter-chain transaction type
Type
type
=
4
;
Type
type
=
4
;
// Timestamp of inter-chain events
// Timestamp of inter-chain events
...
...
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