Skip to content

Commit 335edeb

Browse files
Update readme
1 parent fdeca00 commit 335edeb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,12 @@ enum WalletEnums: string
8585
}
8686

8787
```
88-
You have complete freedom to name your wallets as per your requirements and even add more wallet types to the Enum list.
88+
**You have complete freedom to name your wallets as per your requirements and even add more wallet types to the Enum list.**
8989

9090

91-
In this particular setup, `wallet_1` (`WALLET1`) is given the highest priority. When an order payment is processed, the system will first attempt to use `wallet_1` to cover the cost. If `wallet_1` does not have sufficient funds, `wallet_2` (`WALLET2`) will be used next.
91+
In this particular setup, `wallet_1` (`WALLET1`) is given the **highest priority**. When an order payment is processed, the system will first attempt to use `wallet_1` to cover the cost. If `wallet_1` does not have sufficient funds, `wallet_2` (`WALLET2`) will be used next.
9292

93+
### Example:
9394
If the balance in `wallet_1` is 10 and the balance in `wallet_2` is 20, and you need to pay an order value of 15, the payment process will first utilize the entire balance of `wallet_1`. Since `wallet_1`'s balance is insufficient to cover the full amount, the remaining 5 will be deducted from `wallet_2`. After the payment, `wallet_2` will have a remaining balance of 15."
9495

9596
## Usage, APIs and Operations:

0 commit comments

Comments
 (0)