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

fix license copyright holder and typo #170

Merged
merged 5 commits into from
Apr 12, 2023
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
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ builds:
- -mod=readonly
- -tags=netgo ledger
ldflags:
- -X github.com/line/lbm-sdk/version.Name=fisnchia
- -X github.com/line/lbm-sdk/version.Name=finschia
- -X github.com/line/lbm-sdk/version.ServerName=finschia
- -X github.com/line/lbm-sdk/version.Version={{ .Version }}
- -X github.com/line/lbm-sdk/version.Commit={{ .FullCommit }}
Expand Down
2 changes: 1 addition & 1 deletion .releaserc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
repositoryUrl: git@github.com:line/lbm.git
repositoryUrl: git@github.com:line/finschia.git
verifyConditions: ['@semantic-release/github']
prepare: []
publish: ['@semantic-release/github']
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
### Build, CI

### Docs
* (license) [\#170](https://github.com/line/finschia/pull/170) fix license copyright holder and typo


## [v1.0.0-rc4](https://github.com/line/lbm/releases/tag/v1.0.0-rc4) - 2023-04-08
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2021 LINE Plus Corporation
Copyright 2023 Finschia Foundation

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 2 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Copyright 2016 All in Bits, Inc
Copyright 2021 LINE Plus Corporation

finschia (Apache-2.0)
Copyright 2023 Finschia Foundation

Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion RELEASE_NOTE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# LBM Release Note
# Finschia Release Note

This is a sample release note. If you see this message in the release note, make sure that `./RELEASE_NOTE.md` is written correctly.
2 changes: 1 addition & 1 deletion cli_test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func TestMyNewCommand(t *testing.T) {
This boilerplate above:

- Ensures the tests run in parallel. Because the tests are calling out to `os/exec` for many operations these tests can take a long time to run.
- Creates `.fisnchia` folder in a new temp folder.
- Creates `.finschia` folder in a new temp folder.
- Uses `fnsad` to create 2 accounts for use in testing: `foo` and `bar`
- Creates a genesis file with coins (`1000footoken,1000feetoken,150stake`) controlled by the `foo` key
- Generates an initial bonding transaction (`gentx`) to make the `foo` key a validator at genesis
Expand Down
8 changes: 4 additions & 4 deletions contrib/single-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ fnsad gentx validator 5000000000stake --keyring-backend="test" --chain-id $CHAIN
fnsad collect-gentxs

# Set proper defaults and change ports
sed -i 's#"tcp://127.0.0.1:26657"#"tcp://0.0.0.0:26657"#g' ~/.fisnchia/config/config.toml
sed -i 's/timeout_commit = "5s"/timeout_commit = "1s"/g' ~/.fisnchia/config/config.toml
sed -i 's/timeout_propose = "3s"/timeout_propose = "1s"/g' ~/.fisnchia/config/config.toml
sed -i 's/index_all_keys = false/index_all_keys = true/g' ~/.fisnchia/config/config.toml
sed -i 's#"tcp://127.0.0.1:26657"#"tcp://0.0.0.0:26657"#g' ~/.finschia/config/config.toml
sed -i 's/timeout_commit = "5s"/timeout_commit = "1s"/g' ~/.finschia/config/config.toml
sed -i 's/timeout_propose = "3s"/timeout_propose = "1s"/g' ~/.finschia/config/config.toml
sed -i 's/index_all_keys = false/index_all_keys = true/g' ~/.finschia/config/config.toml

# Start the link
fnsad start --pruning=nothing
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
- "26656-26657:26656-26657"
environment:
- ID=0
- LOG=${LOG:-lbm.log}
- LOG=${LOG:-finschia.log}
volumes:
- ./mytestnet:/data:Z
networks:
Expand All @@ -22,7 +22,7 @@ services:
- "26659-26660:26656-26657"
environment:
- ID=1
- LOG=${LOG:-lbm.log}
- LOG=${LOG:-finschia.log}
volumes:
- ./mytestnet:/data:Z
networks:
Expand All @@ -34,7 +34,7 @@ services:
image: "line/finschianode"
environment:
- ID=2
- LOG=${LOG:-lbm.log}
- LOG=${LOG:-finschia.log}
ports:
- "26661-26662:26656-26657"
volumes:
Expand All @@ -48,7 +48,7 @@ services:
image: "line/finschianode"
environment:
- ID=3
- LOG=${LOG:-lbm.log}
- LOG=${LOG:-finschia.log}
ports:
- "26663-26664:26656-26657"
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docs/delegators/delegator-guide-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Not available yet.

## Finschia Accounts

At the core of every Finschia account, there is a seed, which takes the form of a 12 or 24-words mnemonic. From this mnemonic, it is possible to create any number of Fisnchia accounts, i.e. pairs of private key/public key. This is called an HD wallet (see [BIP32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki) for more information on the HD wallet specification).
At the core of every Finschia account, there is a seed, which takes the form of a 12 or 24-words mnemonic. From this mnemonic, it is possible to create any number of Finschia accounts, i.e. pairs of private key/public key. This is called an HD wallet (see [BIP32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki) for more information on the HD wallet specification).

```
Account 0 Account 1 Account 2
Expand Down
2 changes: 1 addition & 1 deletion docs/finschia-tutorials/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ fnsad version --long

```bash
name: finschia
server_name: fisnchia
server_name: finschia
version: 1.0.0
commit: 8692310a5361006f8c02d44cd7df2d41f130089b
build_tags: netgo,goleveldb
Expand Down