Skip to content

Commit

Permalink
Merge pull request #321 from Phala-Network/migration
Browse files Browse the repository at this point in the history
compute: switch migration account
  • Loading branch information
nanometerzhu committed Mar 25, 2024
2 parents 3e3ad7a + 88eaee1 commit a143fc1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion runtime/khala/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1845,7 +1845,7 @@ pub struct MigrationAccount;
impl Get<AccountId32> for MigrationAccount {
fn get() -> AccountId32 {
let account: [u8; 32] =
hex_literal::hex!("9e6399cd577e8ac536bdc017675f747b2d1893ad9cc8c69fd17eef73d4e6e51e");
hex_literal::hex!("5492cf1c4c446223e1e26b29c5017a8cd4da21799cd7f497fab075b5567efd6f");
account.into()
}
}
Expand Down
2 changes: 1 addition & 1 deletion runtime/phala/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1790,7 +1790,7 @@ pub struct MigrationAccount;
impl Get<AccountId32> for MigrationAccount {
fn get() -> AccountId32 {
let account: [u8; 32] =
hex_literal::hex!("9e6399cd577e8ac536bdc017675f747b2d1893ad9cc8c69fd17eef73d4e6e51e");
hex_literal::hex!("5492cf1c4c446223e1e26b29c5017a8cd4da21799cd7f497fab075b5567efd6f");
account.into()
}
}
Expand Down
2 changes: 1 addition & 1 deletion runtime/rhala/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1837,7 +1837,7 @@ pub struct MigrationAccount;
impl Get<AccountId32> for MigrationAccount {
fn get() -> AccountId32 {
let account: [u8; 32] =
hex_literal::hex!("9e6399cd577e8ac536bdc017675f747b2d1893ad9cc8c69fd17eef73d4e6e51e");
hex_literal::hex!("5492cf1c4c446223e1e26b29c5017a8cd4da21799cd7f497fab075b5567efd6f");
account.into()
}
}
Expand Down
2 changes: 1 addition & 1 deletion runtime/thala/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1827,7 +1827,7 @@ pub struct MigrationAccount;
impl Get<AccountId32> for MigrationAccount {
fn get() -> AccountId32 {
let account: [u8; 32] =
hex_literal::hex!("9e6399cd577e8ac536bdc017675f747b2d1893ad9cc8c69fd17eef73d4e6e51e");
hex_literal::hex!("5492cf1c4c446223e1e26b29c5017a8cd4da21799cd7f497fab075b5567efd6f");
account.into()
}
}
Expand Down

0 comments on commit a143fc1

Please sign in to comment.