-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add kernel contract eth-proxy #218
base: master
Are you sure you want to change the base?
Conversation
2ab6d4f
to
3077f9b
Compare
bc6955a
to
2d19b83
Compare
Codecov Report
@@ Coverage Diff @@
## master #218 +/- ##
==========================================
+ Coverage 48.23% 48.34% +0.10%
==========================================
Files 134 135 +1
Lines 11513 11661 +148
==========================================
+ Hits 5553 5637 +84
- Misses 4819 4855 +36
- Partials 1141 1169 +28
Continue to review full report at Codecov.
|
@@ -15,7 +15,8 @@ type KContext interface { | |||
Initiator() string | |||
Caller() string | |||
AuthRequire() []string | |||
|
|||
TransferAmount() string | |||
ContractName() string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
覆盖Kcontext的transfer方法,只能通过合约名字转账,不用加ContractName
@@ -15,7 +15,8 @@ type KContext interface { | |||
Initiator() string | |||
Caller() string | |||
AuthRequire() []string | |||
|
|||
TransferAmount() string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TransferAmount的签名参考go sdk的签名
No description provided.