Skip to content
View udit1989's full-sized avatar
🙂
🙂

Block or report udit1989

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. A basic .vimrc file that will serve ... A basic .vimrc file that will serve as a good template on which to build.
    1
    " Don't try to be vi compatible
    2
    set nocompatible
    3
    
                  
    4
    " Helps force plugins to load correctly when it is turned back on below
    5
    filetype off
  2. Algorithms Algorithms Public

    Forked from thuva4/Algorithms

    Collection of algorithms in multiple programming languages.

    C++

  3. How to setup two validators in a net... How to setup two validators in a network - dev_mode - sawtooth components running as a service
    1
    In a multi validator setup, one node should be genesis and the rest of the nodes would be peering from genesis node or each other.
    2
    
                  
    3
    Here, we'll setup a two validator network, i.e. two nodes - one a genesis validator and the other a peer validator
    4
    We'll use the default dev_mode consensus and the sawtooth components will run as a service.
    5