From ffd054da0bdef4811148f13f5de2140285a2805f Mon Sep 17 00:00:00 2001 From: Greg Zaitsev Date: Fri, 25 Jun 2021 15:03:04 +0000 Subject: [PATCH] Add CrossAccountId handling in normalize account in helpers --- --- a/tests/src/util/helpers.ts +++ b/tests/src/util/helpers.ts @@ -39,6 +39,9 @@ input.ethereum = input.ethereum.toLowerCase(); return input; } + if ('substrate' in input) { + return input; + } // AccountId return {substrate: input.toString()} -- gitstuff