1 package wallet 2 3 // Options contains the required options for running the legacy RPC server. 4 type Options struct { 5 Username string 6 Password string 7 MaxPOSTClients int64 8 MaxWebsocketClients int64 9 } 10