@@ -13,6 +13,7 @@ import (
1313 "github.com/lightninglabs/taproot-assets/fn"
1414 "github.com/lightninglabs/taproot-assets/internal/test"
1515 "github.com/lightninglabs/taproot-assets/proof"
16+ "github.com/lightninglabs/taproot-assets/rpcutils"
1617 "github.com/lightninglabs/taproot-assets/tapfreighter"
1718 "github.com/lightninglabs/taproot-assets/taprpc"
1819 wrpc "github.com/lightninglabs/taproot-assets/taprpc/assetwalletrpc"
@@ -1150,7 +1151,7 @@ func testSpendChangeOutputWhenProofTransferFail(t *harnessTest) {
11501151 // for this output.
11511152 firstOutput := firstTransfer .Outputs [0 ]
11521153 require .Equal (
1153- t .t , taprpc .ProofDeliveryStatusNotApplicable ,
1154+ t .t , rpcutils .ProofDeliveryStatusNotApplicable ,
11541155 firstOutput .ProofDeliveryStatus ,
11551156 )
11561157
@@ -1159,7 +1160,7 @@ func testSpendChangeOutputWhenProofTransferFail(t *harnessTest) {
11591160 // completed successfully.
11601161 secondOutput := firstTransfer .Outputs [1 ]
11611162 require .Equal (
1162- t .t , taprpc .ProofDeliveryStatusPending ,
1163+ t .t , rpcutils .ProofDeliveryStatusPending ,
11631164 secondOutput .ProofDeliveryStatus ,
11641165 )
11651166
@@ -1228,7 +1229,7 @@ func testSpendChangeOutputWhenProofTransferFail(t *harnessTest) {
12281229 // for this output.
12291230 firstOutput := firstTransfer .Outputs [0 ]
12301231 require .Equal (
1231- t .t , taprpc .ProofDeliveryStatusNotApplicable ,
1232+ t .t , rpcutils .ProofDeliveryStatusNotApplicable ,
12321233 firstOutput .ProofDeliveryStatus ,
12331234 )
12341235
@@ -1237,7 +1238,7 @@ func testSpendChangeOutputWhenProofTransferFail(t *harnessTest) {
12371238 // completed successfully.
12381239 secondOutput := firstTransfer .Outputs [1 ]
12391240 require .Equal (
1240- t .t , taprpc .ProofDeliveryStatusPending ,
1241+ t .t , rpcutils .ProofDeliveryStatusPending ,
12411242 secondOutput .ProofDeliveryStatus ,
12421243 )
12431244
@@ -1254,7 +1255,7 @@ func testSpendChangeOutputWhenProofTransferFail(t *harnessTest) {
12541255 // for this output.
12551256 firstOutput = secondTransfer .Outputs [0 ]
12561257 require .Equal (
1257- t .t , taprpc .ProofDeliveryStatusNotApplicable ,
1258+ t .t , rpcutils .ProofDeliveryStatusNotApplicable ,
12581259 firstOutput .ProofDeliveryStatus ,
12591260 )
12601261
@@ -1263,7 +1264,7 @@ func testSpendChangeOutputWhenProofTransferFail(t *harnessTest) {
12631264 // completed successfully.
12641265 secondOutput = secondTransfer .Outputs [1 ]
12651266 require .Equal (
1266- t .t , taprpc .ProofDeliveryStatusPending ,
1267+ t .t , rpcutils .ProofDeliveryStatusPending ,
12671268 secondOutput .ProofDeliveryStatus ,
12681269 )
12691270
0 commit comments