Revision 974da4819e9255a0f00be545179b10a0017482f0 authored by Raphaƫl Cauderlier on 23 July 2019, 12:10:04 UTC, committed by Pierre Boutillier on 21 October 2019, 12:25:35 UTC
The semantics of the STEPS_TO_QUOTA instruction changes each time the
gas constants are modified to better reflect the real costs.

Moreover, because of STEPS_TO_QUOTA, the interpreter is not monotonic:
it is easy to write a contract that runs successfully at some gas
amount but fails when more gas is given.
1 parent 22d2fa7
Raw File
zeronet.patch
diff --git a/src/bin_node/node_config_file.ml b/src/bin_node/node_config_file.ml
--- a/src/bin_node/node_config_file.ml
+++ b/src/bin_node/node_config_file.ml
@@ -14,7 +14,7 @@ let home =
   with Not_found -> "/root"
 
 let default_data_dir = home // ".tezos-node"
-let default_p2p_port = 9732
+let default_p2p_port = 19732
 let default_rpc_port = 8732
 
 type t = {
@@ -85,7 +85,7 @@ let default_p2p_limits : P2p.limits = {
 
 let default_p2p = {
   expected_pow = 24. ;
-  bootstrap_peers  = ["bootstrap.tezos.com"] ;
+  bootstrap_peers  = [ "52.47.156.43" ; "35.182.249.228" ; "13.231.173.142" ] ;
   listen_addr  = Some ("[::]:" ^ string_of_int default_p2p_port) ;
   closed  = false ;
   limits = default_p2p_limits ;
back to top