Erstellen von GetLastBlock -Objekt für Blockchain
Blockchain.prototype.getLastBlock = function() {
return this.chain[this.chain.length - 1];
}
Outrageous Ostrich
Blockchain.prototype.getLastBlock = function() {
return this.chain[this.chain.length - 1];
}