diff --git a/chain-extensions/token/src/lib.rs b/chain-extensions/token/src/lib.rs index deb12cbd6..54d1a9ba1 100644 --- a/chain-extensions/token/src/lib.rs +++ b/chain-extensions/token/src/lib.rs @@ -183,7 +183,6 @@ where let balance_encoded: Vec = if currency_id == T::GetNativeCurrencyId::get() { as fungible::Inspect>::reducible_balance(&account_id, Preservation::Preserve, Fortitude::Polite).encode() } else { - as fungibles::Inspect>::reducible_balance(currency_id, &account_id, Preservation::Preserve, Fortitude::Polite).encode() }; diff --git a/zombienet/config.toml b/zombienet/config.toml index 389f4240f..1442ad56b 100644 --- a/zombienet/config.toml +++ b/zombienet/config.toml @@ -1,16 +1,15 @@ -[settings] -timeout = 1000 - [relaychain] -default_command = "/Users/gianni/root/Pendulum/polkadot-sdk/target/debug/polkadot" +default_command = "../polkadot/target/release/polkadot" default_args = [ "-lparachain=debug" ] chain = "rococo-local" [[relaychain.nodes]] name = "alice" +validator = true [[relaychain.nodes]] name = "bob" +validator = true [[parachains]] id = 1000 @@ -19,5 +18,4 @@ chain = "foucoco" # "pendulum"/"amplitude"/"dev"/"local" [parachains.collator] name = "alice" -command = "/Users/gianni/root/Pendulum/pendulum/target/release/pendulum-node" - +command = "../pendulum/target/release/pendulum-node" \ No newline at end of file