Uh oh!
There was an error while loading. Please reload this page.
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Extract smart-contract runtime into the separate crate - #179
Merged
Conversation
| (i32.const 4) ;; Pointer to "Transfer to" address. | ||
| (i32.const 8) ;; Length of "Transfer to" address. | ||
| (i32.const 12) ;; Pointer to the buffer with value to transfer | ||
| (i32.const 8) ;; Length of the buffer with value to transfer. |
| ;; Represented by u64 (8 bytes long) in little endian. | ||
| (data (i32.const 4) "\02\00\00\00\00\00\00\00") | ||
| ;; Amount of value to transfer. | ||
| ;; Represented by u64 (8 bytes long) in little endian. |
gavofyork
approved these changes
Jun 1, 2018
pepyakinforce-pushed
the
ser-contract-extract-crate
branch
4 times, most recently
from
June 1, 2018 13:57
02a175b to
fbcea41Comparegavofyork
commented
Jun 1, 2018
Member
one more little resolve... |
pepyakinforce-pushed
the
ser-contract-extract-crate
branch
from
June 4, 2018 07:55
fbcea41 to
b49884cComparepepyakinforce-pushed
the
ser-contract-extract-crate
branch
from
June 5, 2018 09:29
b49884c to
1aeeae8Compareliuchengxu pushed a commit
to chainx-org/substrate
that referenced
this pull request
Aug 23, 2021
provide redis msgbus
liuchengxu added a commit
to chainx-org/substrate
that referenced
this pull request
Aug 23, 2021
* Impl Mining Asset RPC * . * Rename XTypeAssetPowerMap to FixedAssetPowerOf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Goes in after #192
Smart-contract executing moved out from
substrate-runtime-stakingmodule.Hence
staking/src/contract.rsis removed andstaking/src/mock.rsis merged back intolib.rssince it's used only inlib.rs.