Joe Gillick

Results 2 comments of Joe Gillick

``` pub struct AccountTxsRequest { account: String, binary: bool, forward: bool, ledger_index_max: i64, ledger_index_min: i64, limit: u64, } ``` I got it working with the above by using the xrpl...

I also used these defaults: ``` impl AccountTxsRequest { pub fn new(account: &str) -> AccountTxsRequest { AccountTxsRequest { account: account.into(), binary: false, forward: false, ledger_index_max: -1, ledger_index_min: -1, limit: 5,...