Skip to content
Draft
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
2 changes: 2 additions & 0 deletions src/src/vm/rust/RustContract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
ContractManager,
EnvironmentVariablesRequest,
ExitDataResponse,
HardForkRequest,
} from '@btc-vision/op-vm';
import { Blockchain } from '../Blockchain.js';
import { RustContractBinding } from './RustContractBindings.js';
Expand Down Expand Up @@ -153,6 +154,7 @@
BigInt(this.params.gasMax.toString()),
BigInt(this.params.memoryPagesUsed.toString()),
this.params.network,
OPNetConsensus.consensus.CONSENSUS as unknown as HardForkRequest,

Check failure on line 157 in src/src/vm/rust/RustContract.ts

View workflow job for this annotation

GitHub Actions / build (25.x)

Unsafe argument of type error typed assigned to a parameter of type `boolean`

Check failure on line 157 in src/src/vm/rust/RustContract.ts

View workflow job for this annotation

GitHub Actions / build (25.x)

Unsafe argument of type error typed assigned to a parameter of type `boolean`

Check failure on line 157 in src/src/vm/rust/RustContract.ts

View workflow job for this annotation

GitHub Actions / build (24.x)

Unsafe argument of type error typed assigned to a parameter of type `boolean`
this.params.isDebugMode,
//false,
);
Expand Down
Loading