mirror of
https://github.com/PretendoNetwork/nex-go.git
synced 2025-04-02 11:02:14 -04:00
fix: AccountDetailsByPID signature to not take in a pointer
This commit is contained in:
parent
182418f999
commit
a0107a982a
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ type PRUDPEndPoint struct {
|
|||
errorEventHandlers []func(err *Error)
|
||||
ConnectionIDCounter *Counter[uint32]
|
||||
ServerAccount *Account
|
||||
AccountDetailsByPID func(pid *types.PID) (*Account, *Error)
|
||||
AccountDetailsByPID func(pid types.PID) (*Account, *Error)
|
||||
AccountDetailsByUsername func(username string) (*Account, *Error)
|
||||
IsSecureEndPoint bool
|
||||
CalcRetransmissionTimeoutCallback CalcRetransmissionTimeoutCallback
|
||||
|
|
Loading…
Add table
Reference in a new issue