@@ -250,7 +250,7 @@ func TestCreateAndUseTicketForPaymentAndTicketsCreation(t *testing.T) {
250250 }
251251 chains .XRPL .AutoFillTx (ctx , t , & createTicketsTx , senderAcc )
252252 // reset sequence and add ticket
253- createTicketsTx .TxBase . Sequence = 0
253+ createTicketsTx .Sequence = 0
254254 createTicketsTx .TicketSequence = createdTickets [0 ].TicketSequence
255255 require .NoError (t , chains .XRPL .SignAndSubmitTx (ctx , t , & createTicketsTx , senderAcc ))
256256
@@ -272,7 +272,7 @@ func TestCreateAndUseTicketForPaymentAndTicketsCreation(t *testing.T) {
272272 }
273273 chains .XRPL .AutoFillTx (ctx , t , & xrpPaymentTx , senderAcc )
274274 // reset sequence and add ticket
275- xrpPaymentTx .TxBase . Sequence = 0
275+ xrpPaymentTx .Sequence = 0
276276 xrpPaymentTx .TicketSequence = createdTickets [0 ].TicketSequence
277277
278278 t .Logf ("Recipient account balance before: %s" , chains .XRPL .GetAccountBalances (ctx , t , recipientAcc ))
@@ -300,7 +300,7 @@ func TestCreateAndUseTicketForPaymentAndTicketsCreation(t *testing.T) {
300300 }
301301 chains .XRPL .AutoFillTx (ctx , t , & fooPaymentTx , senderAcc )
302302 // reset sequence and add ticket
303- fooPaymentTx .TxBase . Sequence = 0
303+ fooPaymentTx .Sequence = 0
304304 fooPaymentTx .TicketSequence = ticketForFailingTx
305305 // there is no trust set so the tx should fail and use the ticket
306306 require .ErrorContains (
@@ -319,7 +319,7 @@ func TestCreateAndUseTicketForPaymentAndTicketsCreation(t *testing.T) {
319319 }
320320 chains .XRPL .AutoFillTx (ctx , t , & xrpPaymentTx , senderAcc )
321321 // reset sequence and add ticket
322- xrpPaymentTx .TxBase . Sequence = 0
322+ xrpPaymentTx .Sequence = 0
323323 xrpPaymentTx .TicketSequence = ticketForFailingTx
324324 // the ticket is used in prev failed transaction so can't be used here
325325 require .ErrorContains (t , chains .XRPL .SignAndSubmitTx (ctx , t , & fooPaymentTx , senderAcc ), "Ticket is not in ledger" )
@@ -1031,7 +1031,7 @@ func TestXRPLClawback(t *testing.T) {
10311031 require .NoError (t , chains .XRPL .AutoFillSignAndSubmitTx (ctx , t , & clawbackTx , issuerClawbackAcc ))
10321032 balancesAfter = chains .XRPL .GetAccountBalances (ctx , t , recipientAcc )
10331033 t .Logf ("Recipient account balances after: %s" , balancesAfter )
1034- require .True (t , balancesAfter [currencyIssuerClawbackKey ].Value . IsZero ())
1034+ require .True (t , balancesAfter [currencyIssuerClawbackKey ].IsZero ())
10351035
10361036 // try to do the clawback after the issuance
10371037 fooNoClawbackCurrencyTrustSetTx := rippledata.TrustSet {
@@ -1116,7 +1116,7 @@ func buildXrpPaymentTxForMultiSigning(
11161116 }
11171117 xrplChain .AutoFillTx (ctx , t , & tx , from )
11181118 // important for the multi-signing
1119- tx .TxBase . SigningPubKey = & rippledata.PublicKey {}
1119+ tx .SigningPubKey = & rippledata.PublicKey {}
11201120
11211121 return tx
11221122}
@@ -1148,7 +1148,7 @@ func buildCreateTicketsTxForMultiSigning(
11481148 tx .TicketSequence = ticketSeq
11491149 }
11501150 // important for the multi-signing
1151- tx .TxBase . SigningPubKey = & rippledata.PublicKey {}
1151+ tx .SigningPubKey = & rippledata.PublicKey {}
11521152
11531153 return tx
11541154}
@@ -1179,7 +1179,7 @@ func buildUpdateSignerListSetTxForMultiSigning(
11791179 }
11801180 xrplChain .AutoFillTx (ctx , t , & tx , from )
11811181 // important for the multi-signing
1182- tx .TxBase . SigningPubKey = & rippledata.PublicKey {}
1182+ tx .SigningPubKey = & rippledata.PublicKey {}
11831183
11841184 if ticketSeq != nil {
11851185 tx .Sequence = 0
0 commit comments