Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

warden-protocol/wardenprotocol

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Ensure variable names accurately reflect their purpose** In both `newMsgAddKeychainAdmin` and `newMsgAddKeychainWriter`, the variable `newAdminAddress` is used. In t...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Fix incorrect formatting verb `%b` in error messages** In `newMsgFulfilKeyRequest` and `newMsgFulfilSignRequest`, the error messages use `%b` to format `args[1]` whe...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Use `%T` in error messages to prevent panics** In multiple places, the error messages use formatting verbs like `%d` and `%s` to print `args[i]` when type assertions...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Add nil check for creator to prevent potential nil pointer dereference** In `GetNewSpaceEvent`, `creator` is dereferenced without checking for `nil`. This could lead...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Add nil check for creator to prevent potential nil pointer dereference** In `GetNewKeychainEvent`, `creator` is dereferenced without checking for `nil`. This could l...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Add nil check for removedOwner to prevent potential nil pointer dereference** In `GetRemoveSpaceOwnerEvent`, `removedOwner` is dereferenced without checking for `nil...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Add nil check for admin to prevent potential nil pointer dereference** In `GetRemoveKeychainAdminEvent`, `admin` is dereferenced without checking for `nil`. This cou...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Add nil check for writerAddress to prevent potential nil pointer dereference** In `GetAddKeychainWriterEvent`, `writerAddress` is dereferenced without checking for `...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Add nil check for adminAddress to prevent potential nil pointer dereference** In `GetAddKeychainAdminEvent`, `adminAddress` is dereferenced without checking for `nil...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Use `%v` instead of `%d` in error message to prevent panic** Using `%d` with `args[0]` may cause a panic if `args[0]` is not an integer type. Replace `%d` with `%v` ...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Safely perform type assertions to prevent potential panics** The type assertions on `result` may panic if `result` is not of the expected type. Use the comma-ok idio...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Correct the variable name typo from `keyReponse` to `keyResponse`** The variable `keyReponse` is misspelled. It should be `keyResponse` to reflect the correct spelli...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Rename variable to `keychainResponse` for clarity** The variable `keyRequestReponse` is misnamed and misspelled. Since it represents a `Keychain` response, it should...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Use `%v` instead of `%d` in error message to prevent panic** Using `%d` with `args[0]` can cause a panic if `args[0]` is not an integer type. Replace `%d` with `%v` ...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Handle possible nil `QuerySpacesResponse` to prevent nil pointer dereference** In `FromResponse`, check if `res.Spaces` is nil before proceeding to avoid potential n...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Ensure consistent error handling order** In `SpacesMethod`, the error handling checks the response for `nil` before checking for an error. This is inconsistent with ...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Correct the variable name typo from `keyRequestReponse` to `keyRequestResponse`** The variable `keyRequestReponse` is misspelled. It should be `keyRequestResponse` t...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:hammer_and_wrench: Refactor suggestion_ **Consider refactoring event registrations to reduce repetition** The multiple calls to `eventsRegistry.RegisterEvent` can be refactored to reduce code d...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:warning: Potential issue_ **Update method comments to follow GoDoc conventions** The method comments should start with the function name and describe what the function does in a complete senten...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
_:hammer_and_wrench: Refactor suggestion_ **Consider implementing a common error handling function** To reduce code duplication, consider implementing a common error handling function for query m...

View on GitHub

coderabbitai[bot] created a review on a pull request on warden-protocol/wardenprotocol
**Actionable comments posted: 21** <details> <summary>๐Ÿงน Outside diff range and nitpick comments (17)</summary><blockquote> <details> <summary>precompiles/common/address.go (1)</summary><blockquot...

View on GitHub

coderabbitai[bot] created a review on a pull request on warden-protocol/wardenprotocol
**Actionable comments posted: 21** <details> <summary>๐Ÿงน Outside diff range and nitpick comments (17)</summary><blockquote> <details> <summary>precompiles/common/address.go (1)</summary><blockquot...

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
@backsapc, understood. I'll keep this in mind for future reviews. (ใค๏น<ใ€‚) --- <details> <summary>โœ๏ธ Learnings added</summary> ``` Learnt from: backsapc PR: warden-protocol/wardenprotocol#946 Fil...

View on GitHub

coderabbitai[bot] created a review on a pull request on warden-protocol/wardenprotocol

View on GitHub

backsapc created a review comment on a pull request on warden-protocol/wardenprotocol
Wrong

View on GitHub

backsapc created a review on a pull request on warden-protocol/wardenprotocol

View on GitHub

coderabbitai[bot] created a review comment on a pull request on warden-protocol/wardenprotocol
@backsapc Understood, thanks for the clarification. (ใ€‚โ€ขฬ๏ธฟโ€ขฬ€ใ€‚) --- <details> <summary>โœ๏ธ Learnings added</summary> ``` Learnt from: backsapc PR: warden-protocol/wardenprotocol#946 File: precompi...

View on GitHub

coderabbitai[bot] created a review on a pull request on warden-protocol/wardenprotocol

View on GitHub

backsapc created a review comment on a pull request on warden-protocol/wardenprotocol
Wrong

View on GitHub

backsapc created a review on a pull request on warden-protocol/wardenprotocol

View on GitHub

Load more