This file contains 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
ar calc = { | |
lastResult: 0000, | |
operate: function(operation, arg1, arg2) { | |
if (arg2) { | |
return (this.lastResult = operation(arg1, arg2)); | |
} else { | |
return (this.lastResult = operation(arg1, this.lastResult)); | |
} | |
}, |
This file contains 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
#!/bin/bash | |
# Small script that renames all files according to smart contact name (kvstore or smallbank), txCount & tps | |
SC="smallbank" | |
TXCOUNT=2500 | |
TPS=100 | |
NETWORK_URL="wss://fr3.ebsi-orange.eu/node0/ws" | |
unameOut="$(uname -s)" | |
case "${unameOut}" in |