Skip to content
This repository was archived by the owner on Jan 24, 2025. It is now read-only.

Commit f889322

Browse files
authored
Merge pull request #981 from iotaledger/fix/scheduler-account-inconsistency
Fix AccountDestroyed and AccountCreated events.
2 parents d9077af + 40256f0 commit f889322

File tree

6 files changed

+175
-163
lines changed

6 files changed

+175
-163
lines changed

go.mod

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ require (
1212
github.com/golang-jwt/jwt v3.2.2+incompatible
1313
github.com/google/uuid v1.6.0
1414
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
15-
github.com/iotaledger/hive.go/ads v0.0.0-20240425095808-113b21573349
16-
github.com/iotaledger/hive.go/app v0.0.0-20240425095808-113b21573349
17-
github.com/iotaledger/hive.go/constraints v0.0.0-20240425095808-113b21573349
18-
github.com/iotaledger/hive.go/core v1.0.0-rc.3.0.20240425095808-113b21573349
19-
github.com/iotaledger/hive.go/crypto v0.0.0-20240425095808-113b21573349
20-
github.com/iotaledger/hive.go/db v0.0.0-20240425095808-113b21573349
21-
github.com/iotaledger/hive.go/ds v0.0.0-20240425095808-113b21573349
22-
github.com/iotaledger/hive.go/ierrors v0.0.0-20240425095808-113b21573349
23-
github.com/iotaledger/hive.go/kvstore v0.0.0-20240425095808-113b21573349
24-
github.com/iotaledger/hive.go/lo v0.0.0-20240425095808-113b21573349
25-
github.com/iotaledger/hive.go/log v0.0.0-20240425095808-113b21573349
26-
github.com/iotaledger/hive.go/runtime v0.0.0-20240425095808-113b21573349
27-
github.com/iotaledger/hive.go/serializer/v2 v2.0.0-rc.1.0.20240425095808-113b21573349
28-
github.com/iotaledger/hive.go/sql v0.0.0-20240425095808-113b21573349
29-
github.com/iotaledger/hive.go/stringify v0.0.0-20240425095808-113b21573349
30-
github.com/iotaledger/hive.go/web v0.0.0-20240425095808-113b21573349
15+
github.com/iotaledger/hive.go/ads v0.0.0-20240520064018-c635e5900894
16+
github.com/iotaledger/hive.go/app v0.0.0-20240520064018-c635e5900894
17+
github.com/iotaledger/hive.go/constraints v0.0.0-20240520064018-c635e5900894
18+
github.com/iotaledger/hive.go/core v1.0.0-rc.3.0.20240520064018-c635e5900894
19+
github.com/iotaledger/hive.go/crypto v0.0.0-20240520064018-c635e5900894
20+
github.com/iotaledger/hive.go/db v0.0.0-20240520064018-c635e5900894
21+
github.com/iotaledger/hive.go/ds v0.0.0-20240520064018-c635e5900894
22+
github.com/iotaledger/hive.go/ierrors v0.0.0-20240520064018-c635e5900894
23+
github.com/iotaledger/hive.go/kvstore v0.0.0-20240520064018-c635e5900894
24+
github.com/iotaledger/hive.go/lo v0.0.0-20240520064018-c635e5900894
25+
github.com/iotaledger/hive.go/log v0.0.0-20240520064018-c635e5900894
26+
github.com/iotaledger/hive.go/runtime v0.0.0-20240520064018-c635e5900894
27+
github.com/iotaledger/hive.go/serializer/v2 v2.0.0-rc.1.0.20240520064018-c635e5900894
28+
github.com/iotaledger/hive.go/sql v0.0.0-20240520064018-c635e5900894
29+
github.com/iotaledger/hive.go/stringify v0.0.0-20240520064018-c635e5900894
30+
github.com/iotaledger/hive.go/web v0.0.0-20240520064018-c635e5900894
3131
github.com/iotaledger/inx-app v1.0.0-rc.3.0.20240425100742-5c85b6d16701
3232
github.com/iotaledger/inx/go v1.0.0-rc.2.0.20240425100432-05e1bf8fc089
3333
github.com/iotaledger/iota.go/v4 v4.0.0-20240503105040-c86882e71808
@@ -50,8 +50,8 @@ require (
5050
golang.org/x/crypto v0.23.0
5151
golang.org/x/term v0.20.0
5252
google.golang.org/grpc v1.63.2
53-
google.golang.org/protobuf v1.33.0
54-
gorm.io/gorm v1.25.9
53+
google.golang.org/protobuf v1.34.1
54+
gorm.io/gorm v1.25.10
5555
)
5656

5757
require (
@@ -68,7 +68,7 @@ require (
6868
github.com/docker/go-units v0.5.0 // indirect
6969
github.com/eclipse/paho.mqtt.golang v1.4.3 // indirect
7070
github.com/elastic/gosigar v0.14.3 // indirect
71-
github.com/ethereum/go-ethereum v1.14.0 // indirect
71+
github.com/ethereum/go-ethereum v1.14.3 // indirect
7272
github.com/fatih/structs v1.1.0 // indirect
7373
github.com/felixge/fgprof v0.9.4 // indirect
7474
github.com/flynn/noise v1.1.0 // indirect
@@ -85,7 +85,7 @@ require (
8585
github.com/google/go-github v17.0.0+incompatible // indirect
8686
github.com/google/go-querystring v1.1.0 // indirect
8787
github.com/google/gopacket v1.1.19 // indirect
88-
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect
88+
github.com/google/pprof v0.0.0-20240509144519-723abb6459b7 // indirect
8989
github.com/gorilla/websocket v1.5.1 // indirect
9090
github.com/hashicorp/errwrap v1.1.0 // indirect
9191
github.com/hashicorp/go-multierror v1.1.1 // indirect
@@ -152,8 +152,8 @@ require (
152152
github.com/opentracing/opentracing-go v1.2.0 // indirect
153153
github.com/pasztorpisti/qs v0.0.0-20171216220353-8d6c33ee906c // indirect
154154
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect
155-
github.com/pelletier/go-toml/v2 v2.2.1 // indirect
156-
github.com/petermattis/goid v0.0.0-20240327183114-c42a807a84ba // indirect
155+
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
156+
github.com/petermattis/goid v0.0.0-20240503122002-4b96552b8156 // indirect
157157
github.com/pkg/errors v0.9.1 // indirect
158158
github.com/pmezard/go-difflib v1.0.0 // indirect
159159
github.com/pokt-network/smt v0.10.2 // indirect
@@ -183,7 +183,7 @@ require (
183183
golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f // indirect
184184
golang.org/x/image v0.15.0 // indirect
185185
golang.org/x/mod v0.17.0 // indirect
186-
golang.org/x/net v0.24.0 // indirect
186+
golang.org/x/net v0.25.0 // indirect
187187
golang.org/x/sync v0.7.0 // indirect
188188
golang.org/x/sys v0.20.0 // indirect
189189
golang.org/x/text v0.15.0 // indirect

0 commit comments

Comments
 (0)