We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89d21ef commit 4da8789Copy full SHA for 4da8789
circle.yml
@@ -9,7 +9,7 @@ jobs:
9
- run:
10
name: Update rustc
11
command: |
12
- rustup target add wasm32-unknown-unknown
+ rustup target add wasm32-unknown-unknown --toolchain nightly
13
rustup component add rustfmt-preview
14
rustup update
15
rustup install nightly
src/lib.rs
@@ -540,7 +540,7 @@ pub fn returndata_size() -> usize {
540
541
/// Halts execution, reverts all changes to the state and consumes all gas.
542
pub fn abort() -> ! {
543
- /// TODO: use assembly block with `unreachable`
+ // TODO: use assembly block with `unreachable`
544
panic!()
545
}
546
0 commit comments