Skip to content
Snippets Groups Projects

Distillery

Merged Robert Martin-Legene requested to merge distillery into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -11,7 +11,7 @@ var notation = [ 6 ];
function init()
{
notation.push( 10**notation[0] );
notation.push( Math.pow(10, notation[0]) );
switch ( notation[0] ) {
case 6:
notation.push( "Mwei" );
@@ -20,7 +20,7 @@ function init()
notation.push( "Gwei" );
break;
default:
notation = [ 6, 10**6, "Mwei" ];
notation = [ 6, Math.pow(10, 6), "Mwei" ];
}
bfa = new Libbfa();
web3 = bfa.newweb3();
Loading