Skip to content

Commit

Permalink
increase path limit
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc committed Oct 25, 2021
1 parent 2573ee9 commit e5c61eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/karura/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("karura"),
impl_name: create_runtime_str!("karura"),
authoring_version: 1,
spec_version: 1015,
spec_version: 1016,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down Expand Up @@ -1022,7 +1022,7 @@ impl module_emergency_shutdown::Config for Runtime {

parameter_types! {
pub const GetExchangeFee: (u32, u32) = (3, 1000); // 0.3%
pub const TradingPathLimit: u32 = 3;
pub const TradingPathLimit: u32 = 4;
}

impl module_dex::Config for Runtime {
Expand Down

0 comments on commit e5c61eb

Please sign in to comment.