Skip to content

Commit

Permalink
Anvil migrations: use stable symbols (#11193)
Browse files Browse the repository at this point in the history
  • Loading branch information
shazarre authored Aug 21, 2024
1 parent 533ccd1 commit 264b957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/protocol/migrations_sol/Migration.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ contract Migration is Script, UsingRegistry, MigrationsConstants {

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[])
Expand Down

0 comments on commit 264b957

Please sign in to comment.