@@ -130,15 +130,15 @@ contract GenerateFeeVaultAlloc is FeeVaultAllocBase {
130130 console.log (' "alloc": { ' );
131131 console.log (' "%s": { ' , addressKey (cfg.feeVaultAddress));
132132 console.log (' "balance": "0x0", ' );
133- console.log (' "code": "0x %s", ' , vm.toString (runtimeCode));
133+ console.log (' "code": "%s", ' , vm.toString (runtimeCode));
134134 console.log (' "storage": { ' );
135- console.log (' "0x0": "0x %s", ' , vm.toString (slot0));
136- console.log (' "0x1": "0x %s", ' , vm.toString (slot1));
137- console.log (' "0x2": "0x %s", ' , vm.toString (slot2));
138- console.log (' "0x3": "0x %s", ' , vm.toString (slot3));
139- console.log (' "0x4": "0x %s", ' , vm.toString (slot4));
140- console.log (' "0x5": "0x %s", ' , vm.toString (slot5));
141- console.log (' "0x6": "0x %s" ' , vm.toString (slot6));
135+ console.log (' "0x0": "%s", ' , vm.toString (slot0));
136+ console.log (' "0x1": "%s", ' , vm.toString (slot1));
137+ console.log (' "0x2": "%s", ' , vm.toString (slot2));
138+ console.log (' "0x3": "%s", ' , vm.toString (slot3));
139+ console.log (' "0x4": "%s", ' , vm.toString (slot4));
140+ console.log (' "0x5": "%s", ' , vm.toString (slot5));
141+ console.log (' "0x6": "%s" ' , vm.toString (slot6));
142142 console.log (" } " );
143143 console.log (" } " );
144144 console.log (" } " );
@@ -164,21 +164,21 @@ contract GenerateFeeVaultAllocJSON is FeeVaultAllocBase {
164164 abi.encodePacked (
165165 '{" ' ,
166166 addressKey (cfg.feeVaultAddress),
167- '":{"balance":"0x0","code":"0x ' ,
167+ '":{"balance":"0x0","code":" ' ,
168168 vm.toString (runtimeCode),
169- '","storage":{"0x0":"0x ' ,
169+ '","storage":{"0x0":" ' ,
170170 vm.toString (slot0),
171- '","0x1":"0x ' ,
171+ '","0x1":" ' ,
172172 vm.toString (slot1),
173- '","0x2":"0x ' ,
173+ '","0x2":" ' ,
174174 vm.toString (slot2),
175- '","0x3":"0x ' ,
175+ '","0x3":" ' ,
176176 vm.toString (slot3),
177- '","0x4":"0x ' ,
177+ '","0x4":" ' ,
178178 vm.toString (slot4),
179- '","0x5":"0x ' ,
179+ '","0x5":" ' ,
180180 vm.toString (slot5),
181- '","0x6":"0x ' ,
181+ '","0x6":" ' ,
182182 vm.toString (slot6),
183183 '"}}} '
184184 )
0 commit comments