@@ -160,7 +160,6 @@ pub struct FederationIdentity {
160
160
pub federation_name : Option < String > ,
161
161
pub federation_expiry_timestamp : Option < String > ,
162
162
pub welcome_message : Option < String > ,
163
- pub gateway_fees : Option < GatewayFees > ,
164
163
// undocumented parameters that fedi uses: https://meta.dev.fedibtc.com/meta.json
165
164
pub federation_icon_url : Option < String > ,
166
165
pub meta_external_url : Option < String > ,
@@ -873,12 +872,10 @@ impl<S: MutinyStorage> FederationClient<S> {
873
872
}
874
873
875
874
pub async fn get_mutiny_federation_identity ( & self ) -> FederationIdentity {
876
- let gateway_fees = self . gateway_fee ( ) . await . ok ( ) ;
877
875
get_federation_identity (
878
876
self . uuid . clone ( ) ,
879
877
self . fedimint_client . clone ( ) ,
880
878
self . invite_code . clone ( ) ,
881
- gateway_fees,
882
879
self . logger . clone ( ) ,
883
880
)
884
881
. await
@@ -895,8 +892,6 @@ pub(crate) async fn get_federation_identity(
895
892
uuid : String ,
896
893
fedimint_client : ClientHandleArc ,
897
894
invite_code : InviteCode ,
898
- gateway_fees : Option < GatewayFees > ,
899
-
900
895
logger : Arc < MutinyLogger > ,
901
896
) -> FederationIdentity {
902
897
let federation_id = fedimint_client. federation_id ( ) ;
@@ -950,7 +945,6 @@ pub(crate) async fn get_federation_identity(
950
945
fedimint_client. get_meta ( "welcome_message" ) ,
951
946
config. as_ref ( ) . and_then ( |c| c. welcome_message . clone ( ) ) ,
952
947
) ,
953
- gateway_fees, // Already merged using helper function...
954
948
federation_icon_url : merge_values (
955
949
fedimint_client. get_meta ( "federation_icon_url" ) ,
956
950
config. as_ref ( ) . and_then ( |c| c. federation_icon_url . clone ( ) ) ,
0 commit comments