Skip to content

Commit

Permalink
Update CODING_GUIDE.md
Browse files Browse the repository at this point in the history
  • Loading branch information
d4ndox authored Jun 6, 2024
1 parent e23661b commit b4ed413
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions doc/CODING_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,23 +154,24 @@ The parameters within `struct rpc_wallet` include:
```c
/* rpc_call.h */
struct rpc_wallet {
int monero_rpc_method;
char *params;
char *account;
char *host;
char *port;
char *user;
char *pwd;
/* tx related */
char *txid;
char *payid;
char *saddr;
char *iaddr;
char *amount;
char *conf;
char *fifo;
int idx;
cJSON *reply;
int monero_rpc_method;
char *params;
char *account;
char *host;
char *port;
char *user;
char *pwd;
/* tx related */
char *txid;
char *payid;
char *saddr;
char *iaddr;
char *amount;
char *conf;
char *locked;
char *fifo;
int idx;
cJSON *reply;
};
````

Expand All @@ -190,7 +191,6 @@ enum monero_rpc_method {
MK_IADDR,
MK_URI,
SPLIT_IADDR,
GET_VERSION,
END_RPC_SIZE
};
```
Expand Down

0 comments on commit b4ed413

Please sign in to comment.