File tree Expand file tree Collapse file tree 3 files changed +2
-4
lines changed
integration-tests/public/upgradeable-contracts/delegator Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -847,6 +847,7 @@ jobs:
847
847
848
848
- uses : actions/upload-artifact@v4
849
849
with :
850
+ name : measurements-${{ steps.extract_branch.outputs.branch }}
850
851
path : ./measurements-${{ steps.extract_branch.outputs.branch }}
851
852
retention-days : 31
852
853
Original file line number Diff line number Diff line change @@ -422,8 +422,6 @@ pub trait Environment: Clone {
422
422
423
423
/// TODO comment
424
424
type EventRecord : ' static + scale:: Codec ;
425
-
426
- // type AddressMapper: 'static + AddressMapper<Self>;
427
425
}
428
426
429
427
/// Placeholder for chains that have no defined chain extension.
@@ -435,8 +433,6 @@ pub enum NoChainExtension {}
435
433
#[ cfg_attr( feature = "std" , derive( TypeInfo ) ) ]
436
434
pub enum DefaultEnvironment { }
437
435
438
- //use sp_core::crypto::AccountId32;
439
- //use sp_runtime::AccountId32;
440
436
impl Environment for DefaultEnvironment {
441
437
const MAX_EVENT_TOPICS : usize = 4 ;
442
438
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ pub mod delegator {
25
25
pub struct Delegator {
26
26
addresses : Mapping < H160 , i32 , ManualKey < 0x23 > > ,
27
27
counter : i32 ,
28
+ // TODO check if we even need to save the `H256` hash in here.
28
29
delegate_to : Lazy < ( H256 , H160 ) > ,
29
30
}
30
31
You can’t perform that action at this time.
0 commit comments