fix pluginUDapp calling udapp

pull/1/head
Iuri Matias 5 years ago
parent 00d9214c9d
commit 60ef7af9eb
  1. 8
      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()
}
}

Loading…
Cancel
Save