Skip to content

Commit

Permalink
Switch default port for metamask rpc to 8545
Browse files Browse the repository at this point in the history
This is the standard port for eth rpc servers, so it's hopefully less
confusing to users.
  • Loading branch information
jkilpatr committed Dec 6, 2023
1 parent 5910544 commit 3f470cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gravity-info-server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const DOMAIN: &str = if cfg!(test) || DEVELOPMENT {
/// The backend RPC port for the info server fucntions implemented in this repo
const INFO_SERVER_PORT: u16 = 9000;
/// Provides the eip-712 metamask rpc for Gravity Bridge
const METAMASK_RPC_PORT: u16 = 9001;
const METAMASK_RPC_PORT: u16 = 8545;

use crate::batch_relaying::generate_raw_batch_tx;
use crate::gravity_info::get_erc20_metadata;
Expand Down

0 comments on commit 3f470cb

Please sign in to comment.