Skip to content

Commit

Permalink
Use dedicated pallet crate (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmikolajczyk41 committed Sep 4, 2023
1 parent e660a74 commit b19bfee
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ wat = { version = "1.0.71" }
frame-support = { version = "22.0.0" }
frame-system = { version = "22.0.0" }
pallet-balances = { version = "22.0.0" }
pallet-contracts = { version = "21.0.0" }
pallet-contracts = { package = "pallet-contracts-for-drink", version = "21.0.1" }
pallet-contracts-primitives = { version = "25.0.0" }
pallet-timestamp = { version = "21.0.0" }
sp-core = { version = "22.0.0" }
Expand Down
1 change: 1 addition & 0 deletions drink/src/runtime/minimal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ impl pallet_contracts::Config for MinimalRuntime {
type MaxDebugBufferLen = ConstU32<{ 2 * 1024 * 1024 }>;
type Migrations = ();
type DefaultDepositLimit = DefaultDepositLimit;
type Debug = ();
}

use std::time::SystemTime;
Expand Down

0 comments on commit b19bfee

Please sign in to comment.