expede/ethereum-status-codes

View on GitHub

Showing 5 of 5 total issues

File fission.js has 317 lines of code (exceeds 250 allowed). Consider refactoring.
Open

const Category = require('./fission/category');
const Reason = require('./fission/reason');
const { toHexDigit } = require('./fission/hex');
 
// Mappings
Severity: Minor
Found in lib/fission.js - About 3 hrs to fix

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    const REASONS = Object.freeze({
    FAILURE: 0x00,
    SUCCESS: 0x01,
     
    AWAITING_OTHERS: 0x02,
    Severity: Major
    Found in lib/fission/reason.js and 1 other location - About 3 hrs to fix
    lib/fission/category.js on lines 3..24

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    const CATEGORIES = Object.freeze({
    GENERIC: 0x0,
    PERMISSION: 0x1,
    FIND: 0x2,
    NEGOTIATION: 0x3,
    Severity: Major
    Found in lib/fission/category.js and 1 other location - About 3 hrs to fix
    lib/fission/reason.js on lines 3..25

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    const dehumanize = ({category, reason}) => {
    return {
    categoryId: Category.CATEGORIES[category],
    reasonId: Reason.REASONS[reason]
    };
    Severity: Minor
    Found in lib/fission.js and 1 other location - About 55 mins to fix
    lib/fission.js on lines 21..26

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    const humanize = ({categoryId, reasonId}) => {
    return {
    category: Category.CATEGORY_NAMES[categoryId],
    reason: Reason.REASON_NAMES[reasonId]
    };
    Severity: Minor
    Found in lib/fission.js and 1 other location - About 55 mins to fix
    lib/fission.js on lines 28..33
    Severity
    Category
    Status
    Source
    Language