depolymerization

wire gateway for Bitcoin/Ethereum
Log | Files | Refs | Submodules | README | LICENSE

commit c8f70e92a78ac7249c9f2adab3d617021617bf9f
parent 95fa92cf1fd0a9f25f1036e77ad6b5859ba5f250
Author: Antoine A <>
Date:   Wed,  9 Mar 2022 16:12:56 +0100

eth-wire: fix TESTROPSTENETH currency name being too long

Diffstat:
Mcommon/src/currency.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/src/currency.rs b/common/src/currency.rs @@ -20,7 +20,7 @@ pub const MAIN_BTC: &str = "BITCOINBTC"; pub const REGTEST_BTC: &str = "TESTBTC"; pub const TESTNET_BTC: &str = "DEVBTC"; pub const MAIN_ETH: &str = "ETHEREUMETH"; -pub const ROPSTEN_ETH: &str = "TESTROPSTENETH"; +pub const ROPSTEN_ETH: &str = "ROPSTENETH"; pub const DEV_ETH: &str = "DEVETH"; #[derive(Debug, Clone, Copy, PartialEq, Eq)]