We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adc2f8d commit f15400fCopy full SHA for f15400f
README.md
@@ -19,7 +19,7 @@
19
```cpp
20
Wallet wallet;
21
if (minterApi.getAddress("Mx1234....4242", 0, wallet) == MINTERAPI_OK){
22
- Serial << prefix << "Wallet: " << wallet.address << ", count_txs: " << wallet.count_txs << ", length: " << wallet.balance.length() << endl;
+ Serial << "Wallet: " << wallet.address << ", count_txs: " << wallet.count_txs << ", length: " << wallet.balance.length() << endl;
23
for (uint16_t i = 0; i < balance.length(); i++)
24
{
25
Serial << "coin: " << balance.at(i).coin << ", amount: " << balance.at(i).amount << ", amountStr: " << balance.at(i).amountStr << endl;
0 commit comments