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

Web3 labx master #3551

Merged
merged 2 commits into from
Mar 21, 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
4 changes: 2 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ The following data models were either modified, added, removed, or renamed by ha
- #3215 chifra tokens with --verbose produces empty dates
- #3214 chifra cmd - thoughts from making a tutorial in Berlin
- #3213 chifra export --trace --count doesn't work
- #3212 chifra cmd -- any use of `--chain` with a value not found in the array shoudl fail more gracefully
- #3212 chifra cmd -- any use of `--chain` with a value not found in the array should fail more gracefully
- #3211 Omission of popular contracts with long vanity addresses
- #3210 chifra chunks manifest --pin requires ipfs even if the help text says otherwise
- #3207 chifra blocks no reporting...
Expand Down Expand Up @@ -1614,7 +1614,7 @@ There were no changes to the [Specification for the Unchained Index](https://tru
- Changed `abi_source` to `abiSource`.
- Changed `input_dicts` to `inputDicts`.
- Changed `output_dicts` to `outputDicts`.
- Removed `input_names` and `output_names`. (These may be added back in in the future.)
- Removed `input_names` and `output_names`. (These may be added back in the future.)
- `Reconciliation` data model:
- Changed `prevBlock` to `prevAppBlk`.
- Changed `prevBlkBal` to `prevBal`.
Expand Down
2 changes: 1 addition & 1 deletion src/apps/chifra/internal/names/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func (opts *NamesOptions) validateNames() error {

isDryRunnable := opts.Clean || len(opts.Autoname) > 0
if opts.DryRun && !isDryRunnable {
return validate.Usage("The {0} option is is only available with the {1} options.", "--dry_run", "--clean or --autoname")
return validate.Usage("The {0} option is only available with the {1} options.", "--dry_run", "--clean or --autoname")
}

if opts.Tags {
Expand Down
2 changes: 1 addition & 1 deletion src/apps/chifra/pkg/base/fileRange.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func (r FileRange) String() string {
return fmt.Sprintf("%09d-%09d", r.First, r.Last)
}

// RangeToFilename returns a fileName and and existance bool given a file range and a type
// RangeToFilename returns a fileName and existence bool given a file range and a type
func (r *FileRange) RangeToFilename(chain string) (bool, string) {
fileName := config.PathToIndex(chain) + "finalized/" + r.String() + ".bin"
return file.FileExists(fileName), fileName
Expand Down
2 changes: 1 addition & 1 deletion src/dev_tools/utillib/sftime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ TYPE lfloor(TYPE a, TYPE b) {
time_q::CDate& time_q::CDate::setValues(uint32_t y, uint32_t m, uint32_t d) {
m_nDays = (uint64_t)LONG_MIN;
if (m >= JANUARY && m <= DECEMBER && d <= DaysInMonth(y, m)) {
// The following algorithm has been taken from from an article in
// The following algorithm has been taken from an article in
// the March 1993 issue of the Windows / Dos Developers Journal.
m_nDays = (y - 1) * 365 + (uint64_t)lfloor((int32_t)(y - 1), 4);

Expand Down
Loading