Skip to content

Commit

Permalink
fix: parsing of evm whitelisted scilla addresses (#2037)
Browse files Browse the repository at this point in the history
  • Loading branch information
86667 authored Dec 18, 2024
1 parent 0000690 commit ed339b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion z2/src/chain/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,8 @@ impl ChainNode {
ctx.insert("genesis_address", &genesis_account.address);
ctx.insert(
"whitelisted_evm_contract_addresses",
&whitelisted_evm_contract_addresses,
&serde_json::from_value::<toml::Value>(json!(whitelisted_evm_contract_addresses))?
.to_string(),
);
ctx.insert(
"contract_upgrade_block_heights",
Expand Down

0 comments on commit ed339b4

Please sign in to comment.