-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3889 from TrueBlocks/develop
Develop
- Loading branch information
Showing
38 changed files
with
847 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.3.0 | ||
3.5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ SymbolCache.noindex | |
|
||
chifra* | ||
goMaker | ||
indexManager | ||
sdkFuzzer | ||
makeClass | ||
testRunner | ||
|
Submodule examples
updated
16 files
+2 −2 | balanceChart/go.mod | |
+4 −4 | balanceChart/go.sum | |
+2 −2 | cancelContext/go.mod | |
+4 −4 | cancelContext/go.sum | |
+2 −2 | comparison/go.mod | |
+4 −4 | comparison/go.sum | |
+2 −2 | findFirst/go.mod | |
+4 −4 | findFirst/go.sum | |
+2 −2 | nameManager/go.mod | |
+4 −8 | nameManager/go.sum | |
+2 −2 | simple/go.mod | |
+4 −4 | simple/go.sum | |
+1 −2 | templates/base/go.mod.tmpl | |
+1 −1 | templates/base/main.go.tmpl | |
+2 −2 | withStreaming/go.mod | |
+4 −4 | withStreaming/go.sum |
Submodule node
updated
12 files
+1 −0 | .gitignore | |
+6 −6 | .vscode/launch.json.example | |
+14 −31 | app/app.go | |
+23 −22 | app/app_config.go | |
+0 −35 | app/app_config_test.go | |
+59 −0 | app/clean_chain_str.go | |
+51 −0 | app/clean_chain_str_test.go | |
+73 −0 | app/logger.go | |
+106 −64 | app/scraper.go | |
+2 −2 | go.mod | |
+4 −4 | go.sum | |
+4 −1 | makefile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
#!/usr/bin/env bash | ||
|
||
# This script lists all uses of either chifra or the sdk in the go.mod files. Used for debugging. | ||
find . -type f -name 'go.mod' -exec grep -His "TrueBlocks" {} ';' | \ | ||
grep "2024" | \ | ||
cut -f2 -d: | \ | ||
sed 's/ \/\/ indirect//' | \ | ||
sed 's/require //' | \ | ||
tr '\t' '|' | sed 's/|//' | sed 's/^/ /' | \ | ||
sort -u | ||
find . -type f -name "go.mod" -exec grep -His TrueBlocks {} ';' | \ | ||
grep -v module | \ | ||
sed 's/ \/\/ indirect//' | \ | ||
sed 's/require //' | \ | ||
grep -v replace | \ | ||
tr '\t' '|' | \ | ||
sed 's/|//' | \ | ||
cut -f2 -d: | \ | ||
sort -u |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.