Hello @Eleanor_Tay,
Adding some context, where did you deploy the contracts when you tested buying items in the game?
Try adding some alert message just to check where the execution ended up before the error occured:
//buy tokens after game ends
function buy(id) {
alert("before getAccounts");
web3.eth.getAccounts().then(accountArray => {
const options = {
from: accountArray[0],
value: 0
};
if (id == 1)
options.value = 100000000000000;
else if (id == 2)
options.value = 200000000000000;
else if (id == 3)
options.value = 300000000000000;
alert("before buyToken");
marketplace.methods.buyToken(id).send(options)
.on("receipt", receipt => {
alert("Transaction Complete");
});
})
With kind regards