Last active
May 19, 2018 22:31
-
-
Save cayblood/329d24a099555e9a436f55a1cb8eb541 to your computer and use it in GitHub Desktop.
steps 2-3 in Tezzigator baking tutorial https://medium.com/@Tezzigator/permanent-tezos-sandboxing-509368945c4a
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
diff --git a/src/proto_alpha/lib_protocol/src/constants_repr.ml b/src/proto_alpha/lib_protocol/src/constants_repr.ml | |
index edf3007..c34f23d 100644 | |
--- a/src/proto_alpha/lib_protocol/src/constants_repr.ml | |
+++ b/src/proto_alpha/lib_protocol/src/constants_repr.ml | |
@@ -81,7 +81,7 @@ let default = { | |
Int64.(sub (shift_left 1L 56) 1L) ; | |
dictator_pubkey = | |
Signature.Public_key.of_b58check_exn | |
- "edpkugeDwmwuwyyD3Q5enapgEYDxZLtEUFFSrvVwXASQMVEqsvTqWu" ; | |
+ "edpkuSLWfVU1Vq7Jg9FucPyKmma6otcMHac9zG4oU1KMHSTBpJuGQ2" ; | |
max_operation_data_length = | |
16 * 1024 ; (* 16kB *) | |
tokens_per_roll = | |
diff --git a/src/proto_genesis/lib_protocol/src/data.ml b/src/proto_genesis/lib_protocol/src/data.ml | |
index 3e04310..9e9c919 100644 | |
--- a/src/proto_genesis/lib_protocol/src/data.ml | |
+++ b/src/proto_genesis/lib_protocol/src/data.ml | |
@@ -82,7 +82,7 @@ module Pubkey = struct | |
let default = | |
Signature.Public_key.of_b58check_exn | |
- "edpkugeDwmwuwyyD3Q5enapgEYDxZLtEUFFSrvVwXASQMVEqsvTqWu" | |
+ "edpkuSLWfVU1Vq7Jg9FucPyKmma6otcMHac9zG4oU1KMHSTBpJuGQ2" | |
let get_pubkey ctxt = | |
Context.get ctxt pubkey_key >>= function |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment