From 2aa39634a35f041c3110f5136c3ad2e0b9ef4713 Mon Sep 17 00:00:00 2001 From: Leszek Stachowski Date: Mon, 19 Aug 2024 17:01:54 +0200 Subject: [PATCH] Anvil migrations: use stable symbols (#11188) --- packages/protocol/migrations_sol/Migration.s.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/protocol/migrations_sol/Migration.s.sol b/packages/protocol/migrations_sol/Migration.s.sol index d7c4ab3120..47c579ba5a 100644 --- a/packages/protocol/migrations_sol/Migration.s.sol +++ b/packages/protocol/migrations_sol/Migration.s.sol @@ -465,7 +465,7 @@ contract Migration is Script, UsingRegistry, Constants { function migrateStableToken(string memory json) public { string[] memory names = abi.decode(json.parseRaw(".stableTokens.names"), (string[])); - string[] memory symbols = abi.decode(json.parseRaw(".stableTokens.names"), (string[])); + string[] memory symbols = abi.decode(json.parseRaw(".stableTokens.symbols"), (string[])); string[] memory contractSufixs = abi.decode( json.parseRaw(".stableTokens.contractSufixs"), (string[])