Michael Tsitrin
Michael Tsitrin
currently, a node will not start if it has no connectivity with the SL. we probably want to change it, and allow some grace time, as nodes can sync through...
## Description ---- Closes #XXX **All** items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow-up...
possibly a quick win to validate using json checksum. golang: ``` package main import ( "crypto/sha256" "encoding/hex" "encoding/json" "fmt" "io/ioutil" "sort" ) func getJSONChecksum(filePath string) (string, error) { fileContent, err...
currently, if `[height]` is not supplied when calling `rollappd dymint inspect` we get an error. easy fix, make the `height` arg optinal
code like ``` errorsmod.Wrap(ErrInvalidCreatorAddress, err.Error()) ``` should be refactored to ``` errors.Join(ErrInvalidCreatorAddress, err) ```
will require approximation logic for the calculation
## Description ---- Closes #1291 This PR does the following: * better enforcement of single denom for sequencer bond * requires `MinBond` param to be > 0 (instead >= 0...
We'll enforce **single** denom for the sequencer bond to mitigate this
### Implementation ideas currently `roller` installs binaries into **system** path e.g `/usr/local/bin/dymd` it makes it hard to run roller in developers env, as e.g `make install` installs into lower priority...