You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 9, 2023. It is now read-only.
error[E0308]: mismatched types
--> src/cli/fungible.rs:302:27
|
302 | blinding: blinding_factor,
| ^^^^^^^^^^^^^^^ expected `u64`, found `u32`
warning: use of deprecated item 'std::vec::Vec::<T>::remove_item': Removing the first item equal to a needle is already easily possible with iterators and the current Vec methods. Furthermore, having a method for one particular case of removal (linear search, only the first item, no swap remove) but not for others is inconsistent. This method will be removed soon.
--> src/contracts/fungible/data/asset.rs:171:21
|
171 | allocations.remove_item(&old_allocation).is_some()
| ^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
error[E0308]: mismatched types
--> src/contracts/fungible/data/outcoins.rs:52:27
|
52 | blinding: entropy,
| ^^^^^^^ expected `u64`, found `u32`
error[E0308]: mismatched types
--> src/contracts/fungible/data/outcoins.rs:58:27
|
58 | blinding: entropy,
| ^^^^^^^ expected `u64`, found `u32`
error[E0308]: mismatched types
--> src/util/seal_spec.rs:42:27
|
42 | blinding: entropy,
| ^^^^^^^ expected `u64`, found `u32`
error[E0308]: mismatched types
--> src/util/seal_spec.rs:48:27
|
48 | blinding: entropy,
| ^^^^^^^ expected `u64`, found `u32`
error: aborting due to 5 previous errors; 1 warning emitted
For more information about this error, try `rustc --explain E0308`.
error: could not compile `rgb_node`.
The text was updated successfully, but these errors were encountered:
Jasonvdb
changed the title
Broken build because if mismatched types
Broken build because of mismatched types
Jul 21, 2020
Maybe related to PR
The text was updated successfully, but these errors were encountered: