The source code can be found on the master
branch of the Tezos repository
on Gitlab, in the src/proto_009_PsFLorBA
directory, or the or the src/proto_009_PsFlorena
for the release without baking
I hereby claim:
- I am d4hines on github.
- I am d4hines (https://keybase.io/d4hines) on keybase.
- I have a public key whose fingerprint is B826 EE71 FECE 8093 5298 BEC3 66CB F0C1 8FD7 3CE0
To claim this, I am signing this object:
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
Stable* | |
Idle* | |
# Activated by an HTTP request to the node | |
mine block -> Mining Block | |
# Activated by an HTTP request to the node | |
add peer -> Adding Peer | |
recieve error from peer -> Disconnect from Peer |
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
Stable* | |
Idle* | |
# Activated by an HTTP request to the node | |
mine block -> Mining Block | |
# Activated by an HTTP request to the node | |
add peer -> Adding Peer | |
recieve error from peer -> Disconnect from Peer | |
receive P2P message -> Processing P2P Message | |
Mining Block |
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
Stable* | |
Idle* | |
# Activated by an HTTP request to the node | |
mine block -> Mining Block | |
# Activated by an HTTP request to the node | |
add peer -> Adding Peer | |
recieve error from peer -> Disconnect from Peer | |
receive P2P message -> Processing P2P Message | |
Mining Block |
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
#! /usr/bin/env bash | |
set -e | |
if ! which docker > /dev/null 2>&1 ; then | |
echo "Docker does not seem to be installed." | |
exit 1 | |
fi | |
if ! which docker-compose > /dev/null 2>&1 ; then |
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
#!/usr/bin/env bash | |
# Used to go through each commit in a repo one by one | |
# for exploratory purposes. | |
git reset --hard HEAD | |
git clean -xfd | |
INDEX=$(cat /tmp/index) | |
INDEX=$(($INDEX + 1)) | |
echo $INDEX > /tmp/index |
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
[caps]>[esc] | |
[hk9]>[fntog] | |
[hk10]>[caps] | |
[rspc]>[fnshf] | |
fn [caps]>[esc] | |
fn [h]>[lft] | |
fn [k]>[up] | |
fn [j]>[dwn] | |
fn [l]>[rght] | |
fn [hk9]>[fntog] |
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
// Based on https://github.com/azemoh/vscode-one-monokai | |
// Default | |
$plain: #abb2bf; | |
// Background | |
$background: #282c34; | |
// Caret | |
$caret: #528bff; |