Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add iost token string with full precision #1224

Merged
merged 3 commits into from
Jun 28, 2024
Merged
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
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
Loading