Skip to content

Commit

Permalink
Changelog updated for v2.35.0 (#865)
Browse files Browse the repository at this point in the history
Signed-off-by: NikolaMirchev <nikola.mirchev@limechain.tech>
  • Loading branch information
NicolaMirchev authored Feb 6, 2024
1 parent 9dee012 commit 1b94c65
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v2.35.0

### Fixed

- Implemented HIP-745 (Serialize transaction without freezing)

## v2.34.1

### Fixed
Expand Down
3 changes: 2 additions & 1 deletion examples/account_allowance/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func main() {
panic(fmt.Sprintf("%v : error creating client", err))
}

// Retrieving operator ID from environment variable OPERATOR_ID
// Retrieving operator ID from environment variable OPERATOR_ID
operatorAccountID, err := hedera.AccountIDFromString(os.Getenv("OPERATOR_ID"))
if err != nil {
panic(fmt.Sprintf("%v : error converting string to AccountID", err))
Expand Down Expand Up @@ -50,6 +50,7 @@ func main() {
SetKey(aliceKey.PublicKey()).
SetInitialBalance(hedera.NewHbar(5)).
Execute(client)

if err != nil {
panic(fmt.Sprintf("%v : error creating account", err))
}
Expand Down
10 changes: 5 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require (
github.com/crate-crypto/go-kzg-4844 v0.7.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
github.com/docker/docker v24.0.5+incompatible // indirect
github.com/ethereum/go-ethereum v1.13.10
github.com/ethereum/go-ethereum v1.13.11
github.com/getsentry/sentry-go v0.25.0 // indirect
github.com/hashgraph/hedera-protobufs-go v0.2.1-0.20230720072335-ed5726877e99
github.com/holiman/uint256 v1.2.4 // indirect
Expand All @@ -20,18 +20,18 @@ require (
github.com/pkg/errors v0.9.1
github.com/prometheus/common v0.45.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
github.com/rs/zerolog v1.31.0
github.com/rs/zerolog v1.32.0
github.com/stretchr/testify v1.8.4
github.com/syndtr/goleveldb v1.0.1-0.20220614013038-64ee5596c38a // indirect
github.com/tyler-smith/go-bip39 v1.1.0
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a
golang.org/x/crypto v0.18.0
golang.org/x/exp v0.0.0-20240110193028-0dcbfd608b1e // indirect
golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3 // indirect
golang.org/x/net v0.20.0 // indirect
golang.org/x/sync v0.6.0 // indirect
golang.org/x/text v0.14.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20240108191215-35c7eff3a6b1 // indirect
google.golang.org/grpc v1.60.1
google.golang.org/genproto/googleapis/rpc v0.0.0-20240205150955-31a09d347014 // indirect
google.golang.org/grpc v1.61.0
google.golang.org/protobuf v1.32.0
gotest.tools/v3 v3.5.1 // indirect
)
Loading

0 comments on commit 1b94c65

Please sign in to comment.