Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Marks the `pallet-revive` host function `account_id` stable - [#2578](https://github.com/use-ink/ink/pull/2578)
- Stabilize `is_contract` - [#2654](https://github.com/use-ink/ink/pull/2654)

### Fixed
- Fix decoding of `HostFn::minimum_balance` return value - [#2656](https://github.com/use-ink/ink/pull/2656)

### Fixed
- `name` override fixes for message id computation and trait definitions - [#2649](https://github.com/use-ink/ink/pull/2649)

Expand Down
2 changes: 1 addition & 1 deletion crates/env/src/engine/on_chain/pallet_revive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -964,7 +964,7 @@ impl TypedEnvBackend for EnvInstance {
)
.expect("call host function failed");

U256::from_little_endian(&output[..])
U256::from_big_endian(&output[..])
}

fn emit_event<Evt, Abi>(&mut self, event: &Evt)
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/internal/system-precompile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "mapping"
name = "system-precompile"
version = "6.0.0-alpha.4"
authors = ["Use Ink <ink@use.ink>"]
edition = "2024"
Expand Down
Loading
Loading