@@ -189,7 +189,6 @@ pub struct DummyCallManager {
189
189
pub gas_tracker : GasTracker ,
190
190
pub gas_premium : TokenAmount ,
191
191
pub origin : ActorID ,
192
- pub origin_address : Address ,
193
192
pub nonce : u64 ,
194
193
pub test_data : Rc < RefCell < TestData > > ,
195
194
limits : DummyLimiter ,
@@ -216,7 +215,6 @@ impl DummyCallManager {
216
215
nonce : 0 ,
217
216
test_data : rc,
218
217
limits : DummyLimiter :: default ( ) ,
219
- origin_address : Address :: new_id ( 0 ) ,
220
218
gas_premium : TokenAmount :: zero ( ) ,
221
219
} ,
222
220
cell_ref,
@@ -236,7 +234,6 @@ impl DummyCallManager {
236
234
nonce : 0 ,
237
235
test_data : rc,
238
236
limits : DummyLimiter :: default ( ) ,
239
- origin_address : Address :: new_id ( 0 ) ,
240
237
gas_premium : TokenAmount :: zero ( ) ,
241
238
} ,
242
239
cell_ref,
@@ -252,7 +249,7 @@ impl CallManager for DummyCallManager {
252
249
_engine : Engine ,
253
250
_gas_limit : u64 ,
254
251
origin : ActorID ,
255
- origin_address : Address ,
252
+ _origin_address : Address ,
256
253
_receiver : Option < ActorID > ,
257
254
_receiver_address : Address ,
258
255
nonce : u64 ,
@@ -267,7 +264,6 @@ impl CallManager for DummyCallManager {
267
264
gas_tracker : GasTracker :: new ( BLOCK_GAS_LIMIT , Gas :: new ( 0 ) , false ) ,
268
265
gas_premium,
269
266
origin,
270
- origin_address,
271
267
nonce,
272
268
test_data : rc,
273
269
limits,
0 commit comments