Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

Commit

Permalink
test: Reactivate cosmwasm-vm-wasmi tests in semantic
Browse files Browse the repository at this point in the history
  • Loading branch information
code0xff committed Sep 10, 2024
1 parent 77aa1dd commit 83fc28d
Show file tree
Hide file tree
Showing 12 changed files with 643 additions and 643 deletions.
Binary file added composable/vm-wasmi/fixtures/crypto_verify.wasm
Binary file not shown.
Binary file added composable/vm-wasmi/fixtures/cw20_base.wasm
Binary file not shown.
Binary file added composable/vm-wasmi/fixtures/cw20_ics20.wasm
Binary file not shown.
Binary file added composable/vm-wasmi/fixtures/hackatom.wasm
Binary file not shown.
Binary file added composable/vm-wasmi/fixtures/recursion_test.wasm
Binary file not shown.
Binary file added composable/vm-wasmi/fixtures/reflect.wasm
Binary file not shown.
Binary file added composable/vm-wasmi/fixtures/wyndex_factory.wasm
Binary file not shown.
Binary file added composable/vm-wasmi/fixtures/wyndex_pair.wasm
Binary file not shown.
1,279 changes: 640 additions & 639 deletions composable/vm-wasmi/src/semantic.rs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion cosmwasm/std/src/results/system_result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use core::fmt;
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

use crate::{prelude::*, SystemError};
use crate::SystemError;

/// This is the outer result type returned by a querier to the contract.
///
Expand Down
1 change: 1 addition & 0 deletions frame/cosmwasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
trivial_numeric_casts,
unused_extern_crates
)]
#![allow(clippy::type_complexity)]
#![doc = include_str!("../README.md")]

extern crate alloc;
Expand Down
4 changes: 1 addition & 3 deletions frame/cosmwasm/src/runtimes/vm.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
use super::abstraction::{CanonicalCosmwasmAccount, CosmwasmAccount, Gas};
use crate::{
prelude::*, runtimes::abstraction::GasOutcome, types::*, weights::WeightInfo, Config, Pallet,
};
use crate::{runtimes::abstraction::GasOutcome, types::*, weights::WeightInfo, Config, Pallet};
use alloc::{borrow::ToOwned, collections::btree_map::BTreeMap, string::String, vec::Vec};
use core::marker::{Send, Sync};
use cosmwasm_std::{CodeInfoResponse, Coin, ContractInfoResponse, Empty, Env, MessageInfo};
Expand Down

0 comments on commit 83fc28d

Please sign in to comment.