fix(refactor): rename prepareTicket to prepareTicketCreate (https://github.com/ripple/ripple-lib/pull/1324#discussion_r519027049)

This commit is contained in:
Javi
2020-11-08 09:53:17 +01:00
parent c985838cdd
commit 1c1a3fa583
13 changed files with 23 additions and 23 deletions

View File

@@ -351,7 +351,7 @@ describe('integration tests', function () {
it('ticket', function () {
return this.api.getLedgerVersion().then((ledgerVersion) => {
return this.api
.prepareTicket(address, 1, instructions)
.prepareTicketCreate(address, 1, instructions)
.then((prepared) =>
testTransaction(this, 'ticket', ledgerVersion, prepared)
)