good morning!!!!

Skip to content
Snippets Groups Projects
Commit 61a01588 authored by Gavin Wood's avatar Gavin Wood
Browse files

Vanity addresses in AZ.

Fixes to ethereum.js
eth.flush()
parent c01f0ae8
No related branches found
No related tags found
No related merge requests found
...@@ -129,7 +129,7 @@ var formatInputReal = function (value) { ...@@ -129,7 +129,7 @@ var formatInputReal = function (value) {
var dynamicTypeBytes = function (type, value) { var dynamicTypeBytes = function (type, value) {
// TODO: decide what to do with array of strings // TODO: decide what to do with array of strings
if (arrayType(type) || prefixedType('string')(type)) if (arrayType(type) || type == 'string') // only string itself that is dynamic; stringX is static length.
return formatInputInt(value.length); return formatInputInt(value.length);
return ""; return "";
}; };
...@@ -889,6 +889,7 @@ var ethMethods = function () { ...@@ -889,6 +889,7 @@ var ethMethods = function () {
{ name: 'transaction', call: transactionCall }, { name: 'transaction', call: transactionCall },
{ name: 'uncle', call: uncleCall }, { name: 'uncle', call: uncleCall },
{ name: 'compilers', call: 'eth_compilers' }, { name: 'compilers', call: 'eth_compilers' },
{ name: 'flush', call: 'eth_flush' },
{ name: 'lll', call: 'eth_lll' }, { name: 'lll', call: 'eth_lll' },
{ name: 'solidity', call: 'eth_solidity' }, { name: 'solidity', call: 'eth_solidity' },
{ name: 'serpent', call: 'eth_serpent' }, { name: 'serpent', call: 'eth_serpent' },
......
This diff is collapsed.
This diff is collapsed.
...@@ -128,7 +128,7 @@ var formatInputReal = function (value) { ...@@ -128,7 +128,7 @@ var formatInputReal = function (value) {
var dynamicTypeBytes = function (type, value) { var dynamicTypeBytes = function (type, value) {
// TODO: decide what to do with array of strings // TODO: decide what to do with array of strings
if (arrayType(type) || prefixedType('string')(type)) if (arrayType(type) || type == 'string') // only string itself that is dynamic; stringX is static length.
return formatInputInt(value.length); return formatInputInt(value.length);
return ""; return "";
}; };
......
...@@ -82,6 +82,7 @@ var ethMethods = function () { ...@@ -82,6 +82,7 @@ var ethMethods = function () {
{ name: 'transaction', call: transactionCall }, { name: 'transaction', call: transactionCall },
{ name: 'uncle', call: uncleCall }, { name: 'uncle', call: uncleCall },
{ name: 'compilers', call: 'eth_compilers' }, { name: 'compilers', call: 'eth_compilers' },
{ name: 'flush', call: 'eth_flush' },
{ name: 'lll', call: 'eth_lll' }, { name: 'lll', call: 'eth_lll' },
{ name: 'solidity', call: 'eth_solidity' }, { name: 'solidity', call: 'eth_solidity' },
{ name: 'serpent', call: 'eth_serpent' }, { name: 'serpent', call: 'eth_serpent' },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment