Skip to content

Commit

Permalink
Merge pull request #1224 from iost-official/feature/cbdev01/rpc_getac…
Browse files Browse the repository at this point in the history
…count_add_field

Add iost token balance string with full precision
  • Loading branch information
cbdev01 authored Jun 28, 2024
2 parents fe0525c + e31e93c commit 74f5008
Show file tree
Hide file tree
Showing 24 changed files with 779 additions and 791 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## v3.11.5
Fri Jun 28 06:30:05 UTC 2024

Compatible upgrade.

Add iost token balance string with full precision

- Rpc GetAccount add field “BalanceString”
- Protobuf upgrade
- Grpc upgrade

## v3.11.4
Sun Dec 17 22:03:09 CST 2023

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ GO_INSTALL := $(GO) install

PROJECT_NAME := $(shell basename "$(PWD)")
BUILDER_VERSION = 3.11.0
VERSION = 3.11.4
VERSION = 3.11.5
COMMIT = $(shell git rev-parse --short HEAD)
PROJECT = github.com/iost-official/go-iost
DOCKER_IMAGE = iostio/iost-node:$(VERSION)-$(COMMIT)
Expand Down
2 changes: 1 addition & 1 deletion chainbase/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
// SPVFetchInitialBlockFromSeed get the most recent voting block older than the 'syncFrom' block
// if 'syncFrom' is 0, fetch the most recent voting block
func SPVFetchInitialBlockFromSeed(server string, syncFrom int64) (*block.Block, error) {
rpcConn, err := grpc.Dial(server, grpc.WithTransportCredentials(insecure.NewCredentials()))
rpcConn, err := grpc.NewClient(server, grpc.WithTransportCredentials(insecure.NewCredentials()))
if err != nil {
return nil, err
}
Expand Down
14 changes: 7 additions & 7 deletions consensus/synchro/pb/message.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions core/block/pb/block.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions core/blockcache/block_cache.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions core/contract/contract.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions core/merkletree/merkle_tree.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions core/tx/pb/tx.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions crypto/pb/signature.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 74f5008

Please sign in to comment.