Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
plugin
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
plugin
Commits
b2128aff
Commit
b2128aff
authored
Nov 13, 2018
by
linj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add copyright
parent
d6fcfe0f
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
84 additions
and
0 deletions
+84
-0
unfreeze.go
plugin/dapp/unfreeze/commands/unfreeze.go
+4
-0
doc.go
plugin/dapp/unfreeze/executor/doc.go
+4
-0
exec.go
plugin/dapp/unfreeze/executor/exec.go
+4
-0
exec_del_local.go
plugin/dapp/unfreeze/executor/exec_del_local.go
+4
-0
exec_local.go
plugin/dapp/unfreeze/executor/exec_local.go
+4
-0
exec_test.go
plugin/dapp/unfreeze/executor/exec_test.go
+4
-0
kv.go
plugin/dapp/unfreeze/executor/kv.go
+4
-0
means.go
plugin/dapp/unfreeze/executor/means.go
+4
-0
query.go
plugin/dapp/unfreeze/executor/query.go
+4
-0
unfreeze.go
plugin/dapp/unfreeze/executor/unfreeze.go
+4
-0
plugin.go
plugin/dapp/unfreeze/plugin.go
+4
-0
Makefile
plugin/dapp/unfreeze/proto/Makefile
+4
-0
create_protobuf.sh
plugin/dapp/unfreeze/proto/create_protobuf.sh
+4
-0
unfreeze.proto
plugin/dapp/unfreeze/proto/unfreeze.proto
+4
-0
rpc.go
plugin/dapp/unfreeze/rpc/rpc.go
+4
-0
types.go
plugin/dapp/unfreeze/rpc/types.go
+4
-0
const.go
plugin/dapp/unfreeze/types/const.go
+4
-0
errors.go
plugin/dapp/unfreeze/types/errors.go
+4
-0
tx.go
plugin/dapp/unfreeze/types/tx.go
+4
-0
types.go
plugin/dapp/unfreeze/types/types.go
+4
-0
unfreeze.pb.go
plugin/dapp/unfreeze/types/unfreeze.pb.go
+4
-0
No files found.
plugin/dapp/unfreeze/commands/unfreeze.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
commands
import
(
...
...
plugin/dapp/unfreeze/executor/doc.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
executor
// 定期解冻token
plugin/dapp/unfreeze/executor/exec.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
executor
import
(
...
...
plugin/dapp/unfreeze/executor/exec_del_local.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
executor
import
(
...
...
plugin/dapp/unfreeze/executor/exec_local.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
executor
import
(
...
...
plugin/dapp/unfreeze/executor/exec_test.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
executor
import
(
...
...
plugin/dapp/unfreeze/executor/kv.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
executor
import
(
...
...
plugin/dapp/unfreeze/executor/means.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
executor
import
(
...
...
plugin/dapp/unfreeze/executor/query.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
executor
import
(
...
...
plugin/dapp/unfreeze/executor/unfreeze.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
executor
import
(
...
...
plugin/dapp/unfreeze/plugin.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
unfreeze
import
(
...
...
plugin/dapp/unfreeze/proto/Makefile
View file @
b2128aff
//
Copyright
Fuzamei
Corp.
2018
All
Rights
Reserved.
//
Use
of
this
source
code
is
governed
by
a
BSD-style
//
license
that
can
be
found
in
the
LICENSE
file.
all
:
./create_protobuf.sh
plugin/dapp/unfreeze/proto/create_protobuf.sh
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this
source
code is governed by a BSD-style
// license that can be found
in
the LICENSE file.
#!/bin/sh
protoc
--go_out
=
plugins
=
grpc:../types ./
*
.proto
--proto_path
=
.
--proto_path
=
"
$GOPATH
/src/gitlab.33.cn/chain33/chain33/types/proto/"
plugin/dapp/unfreeze/proto/unfreeze.proto
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
syntax
=
"proto3"
;
import
"common.proto"
;
...
...
plugin/dapp/unfreeze/rpc/rpc.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
rpc
import
(
...
...
plugin/dapp/unfreeze/rpc/types.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
rpc
import
(
...
...
plugin/dapp/unfreeze/types/const.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
types
//unfreeze action ty
...
...
plugin/dapp/unfreeze/types/errors.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
types
import
"errors"
...
...
plugin/dapp/unfreeze/types/tx.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
types
plugin/dapp/unfreeze/types/types.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
types
import
(
...
...
plugin/dapp/unfreeze/types/unfreeze.pb.go
View file @
b2128aff
// Copyright Fuzamei Corp. 2018 All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: unfreeze.proto
...
...
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