Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit fb275fd

Browse files
committed
Fix chainhash issues
1 parent 13eac88 commit fb275fd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

repo/db/txns.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ func (t *TxnsDB) GetAll(includeWatchOnly bool) ([]wallet.Txn, error) {
117117
return ret, nil
118118
}
119119

120-
func (t *TxnsDB) Delete(txid *chainhash.Hash) error {
120+
func (t *TxnsDB) Delete(txid string) error {
121121
t.lock.Lock()
122122
defer t.lock.Unlock()
123123
_, err := t.db.Exec("delete from txns where txid=? and coin=?", txid.String(), t.coinType.CurrencyCode())

vendor/github.com/OpenBazaar/go-ethwallet/wallet/wallet.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/OpenBazaar/wallet-interface/datastore.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)