diff --git a/src/blockchain/pluginUDapp.js b/src/blockchain/pluginUDapp.js index a6ece20ddb..dec4b51d1d 100644 --- a/src/blockchain/pluginUDapp.js +++ b/src/blockchain/pluginUDapp.js @@ -15,19 +15,19 @@ class PluginUdapp { } createVMAccount (newAccount) { - return this.blockchain.udapp.createVMAccount(newAccount) + return this.blockchain.createVMAccount(newAccount) } sendTransaction (tx) { - return this.blockchain.udapp.sendTransaction(tx) + return this.blockchain.sendTransaction(tx) } getAccounts (cb) { - return this.blockchain.udapp.getAccounts(cb) + return this.blockchain.getAccounts(cb) } pendingTransactionsCount () { - return this.blockchain.udapp.pendingTransactionsCount() + return this.blockchain.pendingTransactionsCount() } }