Skip to content

Commit

Permalink
Merge pull request #1590 from radixdlt/release/babylon
Browse files Browse the repository at this point in the history
Merge `release/babylon` back into `develop`
  • Loading branch information
iamyulong authored Sep 22, 2023
2 parents 779184b + 58b66ff commit dfcad00
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
17 changes: 7 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ Language for building DeFi apps on Radix.

Documentation: https://docs-babylon.radixdlt.com/main/scrypto/introduction.html

## License

The code in this repository is released under the [Radix License, Version 1.0](LICENSE) and includes modified third party work which is reproduced here pursuant to the Apache 2.0 licensing regime.
Where third party software has been used this is identified together with the appropriate open-source licence.

Binaries, including libraries, CLIs and docker images, are licensed under the [Radix Software EULA](http://www.radixdlt.com/terms/genericEULA).

## Installation

1. Install Rust - this requires Rust 1.70+ (if rust is already installed, upgrade with `rustup update`)
Expand Down Expand Up @@ -136,13 +143,3 @@ docker run -v <path-to-your-scrypto-crate>:/src radixdlt/simulator
## Contribute

To learn more about how to contribute to this project, read the [Contributing Guide](./CONTRIBUTING.md).

## License

This software/code is licensed and used pursuant to the Radix License, Version 1.0 and includes
modified third party work which is reproduced here pursuant to the Apache 2.0 licensing regime.
Where third party software has been used this is identified together with the appropriate
open-source licence.

A copy of the Radix License, Version 1.0 may be found in the `LICENSE` file in the root directory of
this repository.
2 changes: 1 addition & 1 deletion radix-engine-macros/src/decimal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ fn precise_decimal_error_reason(error: ParsePreciseDecimalError) -> &'static str
match error {
ParsePreciseDecimalError::InvalidDigit => "There is an invalid character",
ParsePreciseDecimalError::Overflow => {
"The number being too large to fit in a precise decimal"
"The number is too large to fit in a precise decimal."
}
ParsePreciseDecimalError::EmptyIntegralPart => {
"If there is a decimal point, the number must include at least one digit before it. Use a 0 if necessary."
Expand Down

0 comments on commit dfcad00

Please sign in to comment.