Update AVDL compiled types

This commit is contained in:
Sam
2020-04-08 13:18:10 -04:00
parent 0fd676670f
commit b51c00a910
30 changed files with 2926 additions and 452 deletions

View File

@ -85,6 +85,7 @@ type Asset struct {
AuthEndpoint string `codec:"authEndpoint" json:"authEndpoint"`
DepositReqAuth bool `codec:"depositReqAuth" json:"depositReqAuth"`
WithdrawReqAuth bool `codec:"withdrawReqAuth" json:"withdrawReqAuth"`
UseSep24 bool `codec:"useSep24" json:"useSep24"`
}
func (o Asset) DeepCopy() Asset {
@ -106,6 +107,7 @@ func (o Asset) DeepCopy() Asset {
AuthEndpoint: o.AuthEndpoint,
DepositReqAuth: o.DepositReqAuth,
WithdrawReqAuth: o.WithdrawReqAuth,
UseSep24: o.UseSep24,
}
}