Skip to content

Commit 45d0cf2

Browse files
chore(deps): bump github.com/blinklabs-io/gouroboros from 0.134.2 to 0.135.1 (#510)
* chore(deps): bump github.com/blinklabs-io/gouroboros Bumps [github.com/blinklabs-io/gouroboros](https://github.com/blinklabs-io/gouroboros) from 0.134.2 to 0.135.1. - [Release notes](https://github.com/blinklabs-io/gouroboros/releases) - [Commits](blinklabs-io/gouroboros@v0.134.2...v0.135.1) --- updated-dependencies: - dependency-name: github.com/blinklabs-io/gouroboros dependency-version: 0.135.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * fix(chainsync): add string to resolved transaction output Signed-off-by: Chris Gianelloni <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Chris Gianelloni <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Chris Gianelloni <[email protected]>
1 parent bb018f5 commit 45d0cf2

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

filter/chainsync/chainsync_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,10 @@ func (m MockOutput) ToPlutusData() data.PlutusData {
135135
return nil
136136
}
137137

138+
func (m MockOutput) String() string {
139+
return ""
140+
}
141+
138142
func (l *MockLogger) Info(msg string, args ...any) {}
139143
func (l *MockLogger) Error(msg string, args ...any) {}
140144
func (l *MockLogger) Debug(msg string, args ...any) {}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ toolchain go1.24.4
77
require (
88
github.com/SundaeSwap-finance/kugo v1.3.0
99
github.com/SundaeSwap-finance/ogmigo/v6 v6.1.0
10-
github.com/blinklabs-io/gouroboros v0.134.2
10+
github.com/blinklabs-io/gouroboros v0.135.1
1111
github.com/blinklabs-io/plutigo v0.0.12
1212
github.com/btcsuite/btcd/btcutil v1.1.6
1313
github.com/gen2brain/beeep v0.11.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ github.com/aws/aws-sdk-go v1.55.6 h1:cSg4pvZ3m8dgYcgqB97MrcdjUmZ1BeMYKUxMMB89IPk
1515
github.com/aws/aws-sdk-go v1.55.6/go.mod h1:eRwEWoyTWFMVYVQzKMNHWP5/RV4xIUGMQfXQHfHkpNU=
1616
github.com/bits-and-blooms/bitset v1.20.0 h1:2F+rfL86jE2d/bmw7OhqUg2Sj/1rURkBn3MdfoPyRVU=
1717
github.com/bits-and-blooms/bitset v1.20.0/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8=
18-
github.com/blinklabs-io/gouroboros v0.134.2 h1:ADkkZTYOvocbjO6IL6c/4I+ZTX6/LDLBuPTLiDQ/2KE=
19-
github.com/blinklabs-io/gouroboros v0.134.2/go.mod h1:N4smrM9nmuSkYV92D7IL4z00/iAkbXysT1Ld7saVWeI=
18+
github.com/blinklabs-io/gouroboros v0.135.1 h1:2Z+GkULXKMFb/D1x7EE/LkCesAt/MQxrf3JNffBWvF4=
19+
github.com/blinklabs-io/gouroboros v0.135.1/go.mod h1:eCXFpt2fOhp2Id/0AqMaI/qr0bodbS0SIAOpNZVu9Iw=
2020
github.com/blinklabs-io/ouroboros-mock v0.3.8 h1:+DAt2rx0ouZUxee5DBMgZq3I1+ZdxFSHG9g3tYl/FKU=
2121
github.com/blinklabs-io/ouroboros-mock v0.3.8/go.mod h1:UwQIf4KqZwO13P9d90fbi3UL/X7JaJfeEbqk+bEeFQA=
2222
github.com/blinklabs-io/plutigo v0.0.12 h1:DxnYKvKYn9OlgiTJi5Ofd97znSJWUtVZjZFqxW9HW/A=

input/chainsync/transaction_output.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2024 Blink Labs Software
1+
// Copyright 2025 Blink Labs Software
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -173,3 +173,8 @@ func (txOut ResolvedTransactionOutput) ToPlutusData() data.PlutusData {
173173
// Placeholder for PlutusData representation
174174
return nil
175175
}
176+
177+
func (txOut ResolvedTransactionOutput) String() string {
178+
// Placeholder for string representation
179+
return ""
180+
}

0 commit comments

Comments
 (0)