GLEEC_OLD: exception to fix following the notarizations#637
Merged
Conversation
This configuration assumes that we have the `~/.komodo/GLEEC_OLD` directory for the old GLEEC chain. The daemon should be launched with `-datadir=$HOME/.komodo/GLEEC_OLD`, and the data directory should contain `GLEEC.conf` along with a symlink to it named `GLEEC_OLD.conf`.
|
Will this change the ticker in decoded op_return also? |
Author
We already did this in iguana. |
smk762
reviewed
Oct 17, 2024
smk762
approved these changes
Oct 17, 2024
TheComputerGenie
pushed a commit
to ComputerGenieCo/komodo
that referenced
this pull request
Sep 12, 2025
* GLEEC_OLD: exception to fix following the notarizations This configuration assumes that we have the `~/.komodo/GLEEC_OLD` directory for the old GLEEC chain. The daemon should be launched with `-datadir=$HOME/.komodo/GLEEC_OLD`, and the data directory should contain `GLEEC.conf` along with a symlink to it named `GLEEC_OLD.conf`. * timeshifting transient verb --------- Co-authored-by: smk762 <smk@komodoplatform.com>
TheComputerGenie
pushed a commit
to ComputerGenieCo/komodo
that referenced
this pull request
Sep 12, 2025
* GLEEC_OLD: exception to fix following the notarizations This configuration assumes that we have the `~/.komodo/GLEEC_OLD` directory for the old GLEEC chain. The daemon should be launched with `-datadir=$HOME/.komodo/GLEEC_OLD`, and the data directory should contain `GLEEC.conf` along with a symlink to it named `GLEEC_OLD.conf`. * timeshifting transient verb --------- Co-authored-by: smk762 <smk@komodoplatform.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This update should fix the notarization issue with the old GLEEC chain. After applying the fix, the output of the
getinfoRPC call should look something like this:{ "version": 90000, "protocolversion": 170013, "KMDversion": "0.9.0", "synced": true, "notarized": 974444, "prevMoMheight": 974444, "notarizedhash": "0958f1dd625d89d5749b698cbf7e57eb294dd1916d828d60fbf9de9dfd9053e4", "notarizedtxid": "7fdc3a5452baef619452408cc31fac86de468755380914d7f172dc78b7702ac8", "notarizedtxid_height": "mempool", "KMDnotarized_height": 0, "notarized_confirms": 0, "walletversion": 60000, "balance": 0, "blocks": 974458, "longestchain": 974458, "tiptime": 1728914950, "difficulty": 1, "keypoololdest": 1728668685, "keypoolsize": 101, "paytxfee": 0, "sapling": 61, "timeoffset": 0, "connections": 16, "proxy": "", "testnet": false, "relayfee": 1e-06, "errors": "", "name": "GLEEC_OLD", "p2pport": 23225, "rpcport": 23226, "magic": 1824725725, "premine": 210000000, "staked": 100 }The fix changes the chain name (ticker) "at runtime," allowing us to keep the existing chain parameters and magic. Normally, we wouldn’t do something like this, but for the old GLEEC chain, we will make an exception. Additionally, the user should create a symlink for the
.conffile like this:The daemon should be launched with
-datadir=$HOME/.komodo/GLEEC_OLD, and the data directory should containGLEEC.confalong with a symlink to it namedGLEEC_OLD.conf.