Merge pull request 'fixed recipient storing problem' (#27) from address-book-#16 into main
All checks were successful
ci/woodpecker/push/fx_ingestor Pipeline was successful
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/chain_gateway Pipeline was successful
ci/woodpecker/push/frontend Pipeline was successful
ci/woodpecker/push/fx_oracle Pipeline was successful
ci/woodpecker/push/ledger Pipeline was successful
ci/woodpecker/push/nats Pipeline was successful
ci/woodpecker/push/mntx_gateway Pipeline was successful
ci/woodpecker/push/notification Pipeline was successful
ci/woodpecker/push/payments_orchestrator Pipeline was successful

Reviewed-on: #27
This commit was merged in pull request #27.
This commit is contained in:
2025-12-05 08:38:31 +00:00
5 changed files with 5 additions and 5 deletions

View File

@@ -115,7 +115,7 @@ func (i *Imp) Start() error {
return gatewayservice.NewService(logger, repo, producer, opts...), nil
}
app, err := grpcapp.NewApp(i.logger, "chain_gateway", cfg.Config, i.debug, repoFactory, serviceFactory)
app, err := grpcapp.NewApp(i.logger, "chain", cfg.Config, i.debug, repoFactory, serviceFactory)
if err != nil {
return err
}

View File

@@ -13,5 +13,5 @@ func factory(logger mlogger.Logger, file string, debug bool) (server.Application
}
func main() {
smain.RunServer("main", appversion.Create(), factory)
smain.RunServer("gateway", appversion.Create(), factory)
}

View File

@@ -125,7 +125,7 @@ func (i *Imp) Start() error {
return svc, nil
}
app, err := grpcapp.NewApp(i.logger, "mntx_gateway", cfg.Config, i.debug, nil, serviceFactory)
app, err := grpcapp.NewApp(i.logger, "monetix", cfg.Config, i.debug, nil, serviceFactory)
if err != nil {
return err
}

View File

@@ -13,5 +13,5 @@ func factory(logger mlogger.Logger, file string, debug bool) (server.Application
}
func main() {
smain.RunServer("mntx_gateway", appversion.Create(), factory)
smain.RunServer("gateway", appversion.Create(), factory)
}

View File

@@ -96,8 +96,8 @@ class _AdressBookRecipientFormState extends State<AdressBookRecipientForm> {
name: getPaymentTypeLabel(context, data.type),
data: data,
);
return recipient;
}
return recipient;
}
//TODO: Change when registration is ready