Skip to content

Commit de73b95

Browse files
committed
fix: fix compile error
1 parent 6411c8c commit de73b95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

indexer/pchain/batch_indexer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ func (xi *txBatchIndexer) isDurango(blockTime *time.Time) bool {
348348
return blockTime != nil && !blockTime.Before(xi.durangoTime)
349349
}
350350

351-
func getAddStakerTxOutputs(txID string, tx PermissionlessStakerTx) ([]shared.Output, error) {
351+
func getAddStakerTxOutputs(txID string, tx StakerTx) ([]shared.Output, error) {
352352
outs, err := shared.OutputsFromTxOuts(txID, tx.Outputs(), 0, PChainDefaultInputOutputCreator)
353353
if err != nil {
354354
return nil, err

0 commit comments

Comments
 (0)