generated from mrz1836/go-template
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(SPV-1057): rename draft to transaction outlines in new tx fl…
…ow. (#739)
- Loading branch information
1 parent
426c6c6
commit 3312ad9
Showing
32 changed files
with
463 additions
and
463 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
package engine | ||
|
||
import ( | ||
"github.com/bitcoin-sv/spv-wallet/engine/transaction/draft" | ||
"github.com/bitcoin-sv/spv-wallet/engine/transaction/outlines" | ||
) | ||
|
||
// TransactionDraftService will return the draft.Service if it exists | ||
func (c *Client) TransactionDraftService() draft.Service { | ||
if c.options.transactionDraftService != nil { | ||
return c.options.transactionDraftService | ||
// TransactionOutlinesService will return the outlines.Service if it exists | ||
func (c *Client) TransactionOutlinesService() outlines.Service { | ||
if c.options.transactionOutlinesService != nil { | ||
return c.options.transactionOutlinesService | ||
} | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
engine/transaction/draft/testabilities/ability_draft_transaction.go
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.