From 38a9b6da20b7877f7dbabb75402c7806887b7f38 Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Tue, 8 Mar 2022 16:16:16 +0100 Subject: [PATCH] mod: add TODOs for removing local replaces --- btcutil/go.mod | 1 + btcutil/psbt/go.mod | 1 + go.mod | 1 + 3 files changed, 3 insertions(+) diff --git a/btcutil/go.mod b/btcutil/go.mod index b8de1c3ffd7..e6451e4e7a9 100644 --- a/btcutil/go.mod +++ b/btcutil/go.mod @@ -13,6 +13,7 @@ require ( golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 ) +// TODO(guggero): Remove this as soon as we have a tagged version of btcec/v2. replace github.com/btcsuite/btcd/btcec/v2 => ../btcec replace github.com/btcsuite/btcd => ../ diff --git a/btcutil/psbt/go.mod b/btcutil/psbt/go.mod index ffd187018e7..7ae2dcb86d2 100644 --- a/btcutil/psbt/go.mod +++ b/btcutil/psbt/go.mod @@ -16,6 +16,7 @@ require ( golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect ) +// TODO(guggero): Remove this as soon as we have a tagged version of btcec/v2. replace github.com/btcsuite/btcd/btcec/v2 => ../../btcec replace github.com/btcsuite/btcd/btcutil => ../ diff --git a/go.mod b/go.mod index b23586247cf..f255da7aaef 100644 --- a/go.mod +++ b/go.mod @@ -25,6 +25,7 @@ require ( replace github.com/btcsuite/btcd/btcutil => ./btcutil +// TODO(guggero): Remove this as soon as we have a tagged version of btcec/v2. replace github.com/btcsuite/btcd/btcec/v2 => ./btcec // We depend on chainhash as is, so we need to replace to use the version of