Skip to content

Commit eb3a124

Browse files
committed
fix signer_lists with an s
1 parent bf3cdc7 commit eb3a124

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

xrpl/queries/account/info.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ type InfoRequest struct {
1919
LedgerIndex common.LedgerSpecifier `json:"ledger_index,omitempty"`
2020
LedgerHash common.LedgerHash `json:"ledger_hash,omitempty"`
2121
Queue bool `json:"queue,omitempty"`
22-
SignerList bool `json:"signer_list,omitempty"`
22+
SignerLists bool `json:"signer_lists,omitempty"`
2323
Strict bool `json:"strict,omitempty"`
2424
}
2525

xrpl/queries/account/info_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ func TestAccountInfoRequest(t *testing.T) {
1515
Account: "rG1QQv2nh2gr7RCZ1P8YYcBUKCCN633jCn",
1616
LedgerIndex: common.Closed,
1717
Queue: true,
18-
SignerList: false,
18+
SignerLists: false,
1919
Strict: true,
2020
}
2121

22-
// SignerList assigned to default, omitted due to omitempty
22+
// SignerLists assigned to default, omitted due to omitempty
2323
j := `{
2424
"account": "rG1QQv2nh2gr7RCZ1P8YYcBUKCCN633jCn",
2525
"ledger_index": "closed",

0 commit comments

Comments
 (0)