Braqzen

Results 36 comments of Braqzen

Additional comment for **params** in version `0.24.4`. The following code ```rust fn claim( amount: u64, key: u64, num_leaves: u64, proof: [b256; 2], to: Identity, ); ``` turns into ```rust fn...

When requesting a review you should consider whether it is a draft or an open PR like this one. If it is an open PR then you must make sure...

> Nevertheless, the issue needs to be investigated and resolved. Supposedly, [this](https://github.com/FuelLabs/sway/blob/master/sway-lib-std/src/lib.sw#L15) should not be causing issues but perhaps it somehow is? I don't know how it would have made...

> @rostyslavtyshko can you clarify what was happening that was causing the related bug on this PR? Compiling Sway and the library works as expected however when you attempt to...

> @Braqzen Would you mind updating your PR #2282 with respect to `master`? Either that or I can just retarget this PR to `master` and a lot of the diffs...

> My branch has no conflicts, so if it's easier we can just use that. Either way is fine with me. If my PR is stale then feel free to...

1. [Indexing](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#indexing) and being able to assign to a specific index 2. [Inserting](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.insert) at specified index 3. [Removing](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.remove) at specified index 4. [Pop](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.pop) from the end 5. [Append](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.append) vectors together...

Actually, it turns out that this will not build because `-` is not allowed in the library. This is not detected when using the default contract creation. How should we...

Should any content that uses `store` & `get` be deleted entirely since it will no longer be usable?