Skip to content

Commit

Permalink
Anvil migrations: use stable symbols (#11188)
Browse files Browse the repository at this point in the history
  • Loading branch information
shazarre authored Aug 19, 2024
1 parent 88d75c8 commit 2aa3963
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 @@ -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[])
Expand Down

0 comments on commit 2aa3963

Please sign in to comment.