(ctx context.Context, localpart string, servername string, chatFee string, mortgageFee string)
| 896 | } |
| 897 | |
| 898 | func (a *UserInternalAPI) InsertChainData(ctx context.Context, localpart string, servername string, chatFee string, mortgageFee string) (err error) { |
| 899 | return a.DB.InsertChainData(ctx, localpart, servername, chatFee, mortgageFee) |
| 900 | } |
| 901 | |
| 902 | func (a *UserInternalAPI) SetMortgageFee(ctx context.Context, localpart string, mortgageFee string) (err error) { |
| 903 | return a.DB.SetMortgageFee(ctx, localpart, mortgageFee) |
nothing calls this directly
no test coverage detected