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 @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Removed
- [2306](https://github.com/FuelLabs/fuel-core/pull/2306): Removed hack for genesis asset contract from the code.

## [Version 0.37.1]

### Fixed
Expand Down
3 changes: 0 additions & 3 deletions crates/services/executor/src/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1593,9 +1593,6 @@ where
.read_transaction()
.with_policy(ConflictPolicy::Overwrite);

let inputs = checked_tx.transaction().inputs();
crate::hacks::maybe_fix_storage(inputs, &mut sub_block_db_commit)?;

let vm_db = VmStorage::new(
&mut sub_block_db_commit,
&header.consensus,
Expand Down
133 changes: 0 additions & 133 deletions crates/services/executor/src/hacks.rs

This file was deleted.

1 change: 0 additions & 1 deletion crates/services/executor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
extern crate alloc;

pub mod executor;
mod hacks;
pub mod ports;
pub mod refs;

Expand Down