File tree 1 file changed +3
-0
lines changed
bus-mapping/src/circuit_input_builder
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -255,6 +255,7 @@ impl CopyDataTypeIter {
255
255
5usize => Some ( CopyDataType :: RlcAcc ) ,
256
256
6usize => Some ( CopyDataType :: AccessListAddresses ) ,
257
257
7usize => Some ( CopyDataType :: AccessListStorageKeys ) ,
258
+ #[ cfg( feature = "dual_bytecode" ) ]
258
259
8usize => Some ( CopyDataType :: Bytecode1 ) ,
259
260
_ => None ,
260
261
}
@@ -324,6 +325,7 @@ impl From<CopyDataType> for usize {
324
325
CopyDataType :: RlcAcc => 5 ,
325
326
CopyDataType :: AccessListAddresses => 6 ,
326
327
CopyDataType :: AccessListStorageKeys => 7 ,
328
+ #[ cfg( feature = "dual_bytecode" ) ]
327
329
CopyDataType :: Bytecode1 => 8 ,
328
330
}
329
331
}
@@ -522,6 +524,7 @@ impl CopyEvent {
522
524
( CopyDataType :: RlcAcc , _)
523
525
| ( _, CopyDataType :: RlcAcc )
524
526
| ( _, CopyDataType :: Bytecode )
527
+ #[ cfg( feature = "dual_bytecode" ) ]
525
528
| ( _, CopyDataType :: Bytecode1 )
526
529
)
527
530
}
You can’t perform that action at this time.
0 commit comments