Commit 60ef7af9 authored by Iuri Matias's avatar Iuri Matias

fix pluginUDapp calling udapp

parent 00d9214c
...@@ -15,19 +15,19 @@ class PluginUdapp { ...@@ -15,19 +15,19 @@ class PluginUdapp {
} }
createVMAccount (newAccount) { createVMAccount (newAccount) {
return this.blockchain.udapp.createVMAccount(newAccount) return this.blockchain.createVMAccount(newAccount)
} }
sendTransaction (tx) { sendTransaction (tx) {
return this.blockchain.udapp.sendTransaction(tx) return this.blockchain.sendTransaction(tx)
} }
getAccounts (cb) { getAccounts (cb) {
return this.blockchain.udapp.getAccounts(cb) return this.blockchain.getAccounts(cb)
} }
pendingTransactionsCount () { pendingTransactionsCount () {
return this.blockchain.udapp.pendingTransactionsCount() return this.blockchain.pendingTransactionsCount()
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment