Ethereum 为什么我所有的混音测试帐户都显示0 ETH?

Ethereum 为什么我所有的混音测试帐户都显示0 ETH?,ethereum,solidity,smartcontracts,remix,ether,Ethereum,Solidity,Smartcontracts,Remix,Ether,我正试图在remix.ethereum.org上编写一个TictaToe游戏,但突然间,我所有的测试帐户都显示0 ETH余额,因此我无法再使用它们部署我的合同 以下是发生时我正在部署的solidity代码: pragma solidity ^0.4.19; contract TicTacToe { uint8 public boardSize = 3; address[3][3] board; address public player1; address

我正试图在remix.ethereum.org上编写一个TictaToe游戏,但突然间,我所有的测试帐户都显示0 ETH余额,因此我无法再使用它们部署我的合同

以下是发生时我正在部署的solidity代码:

pragma solidity ^0.4.19;

contract TicTacToe {

    uint8 public boardSize = 3;

    address[3][3] board;

    address public player1;
    address public player2;

    constructor() public {
        player1 = msg.sender;
    }

    function joinGame() public {
        assert(player2 == address(0));
        player2 = msg.sender;
    }

    function setStone(uint8 x, uint8 y) public {
        board[x][y] = msg.sender;
    }

}

新的测试帐户在创建时仍然显示100 ETH。

我认为这与部署您的Solidity代码无关

您正在使用什么区块链环境?这很可能是一个问题