Skip to content

Commit

Permalink
Merge branch 'tiago/wallet-bridge-pool-addr' (#1848)
Browse files Browse the repository at this point in the history
* origin/tiago/wallet-bridge-pool-addr:
  Changelog for #1848
  Add the Bridge pool as a default wallet address
  • Loading branch information
Fraccaman committed Sep 6, 2023
2 parents 07fbc53 + 6e95f98 commit 43584ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Add the Bridge pool as a default wallet address
([\#1848](https://github.com/anoma/namada/pull/1848))
2 changes: 2 additions & 0 deletions apps/src/lib/wallet/defaults.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ pub use dev::{
ester_address, ester_keypair, keys, validator_address, validator_keypair,
validator_keys,
};
use namada::core::ledger::eth_bridge::storage::bridge_pool::BRIDGE_POOL_ADDRESS;
use namada::ledger::wallet::alias::Alias;
use namada::ledger::{eth_bridge, governance, pgf, pos};
use namada::types::address::Address;
Expand All @@ -22,6 +23,7 @@ pub fn addresses_from_genesis(genesis: GenesisConfig) -> Vec<(Alias, Address)> {
("pos_slash_pool".into(), pos::SLASH_POOL_ADDRESS),
("governance".into(), governance::ADDRESS),
("eth_bridge".into(), eth_bridge::ADDRESS),
("bridge_pool".into(), BRIDGE_POOL_ADDRESS),
("pgf".into(), pgf::ADDRESS),
];
// Genesis validators
Expand Down

0 comments on commit 43584ed

Please sign in to comment.