Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions rpcclient/backend_version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ func TestParseBitcoindVersion(t *testing.T) {
}

for _, tc := range testCases {
tc := tc

t.Run(tc.name, func(t *testing.T) {
version := parseBitcoindVersion(tc.rpcVersion)
require.Equal(t, tc.parsedVersion, version)
Expand Down Expand Up @@ -96,8 +94,6 @@ func TestParseBtcdVersion(t *testing.T) {
}

for _, tc := range testCases {
tc := tc

t.Run(tc.name, func(t *testing.T) {
version := parseBtcdVersion(tc.rpcVersion)
require.Equal(t, tc.parsedVersion, version)
Expand Down
2 changes: 0 additions & 2 deletions rpcclient/infrastructure_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,6 @@ func TestParseAddressString(t *testing.T) {
}

for _, tc := range testCases {
tc := tc

t.Run(tc.name, func(t *testing.T) {
addr, err := ParseAddressString(tc.addressString)
if tc.expErrStr != "" {
Expand Down