🐛 Fix place transaction wrongly

This commit is contained in:
LittleSheep 2025-03-23 21:52:10 +08:00
parent 548bd6984b
commit fa3561ae58

View File

@ -70,7 +70,7 @@ func ChargeForProgram(member models.ProgramMember) error {
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5) ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
defer cancel() defer cancel()
_, err = wc.MakeTransactionWithAccount(ctx, &proto.MakeTransactionWithAccountRequest{ _, err = wc.MakeTransactionWithAccount(ctx, &proto.MakeTransactionWithAccountRequest{
PayeeAccountId: lo.ToPtr(uint64(member.AccountID)), PayerAccountId: lo.ToPtr(uint64(member.AccountID)),
Amount: pricing.Amount, Amount: pricing.Amount,
Currency: pricing.Currency, Currency: pricing.Currency,
Remark: fmt.Sprintf("Program Membership: %s", member.Program.Name), Remark: fmt.Sprintf("Program Membership: %s", member.Program.Name),