コード例 #1
0
    public ResultWrapper <UInt256?> eth_newBlockFilter()
    {
        int filterId = _blockchainBridge.NewBlockFilter();

        return(ResultWrapper <UInt256?> .Success((UInt256)filterId));
    }
コード例 #2
0
ファイル: EthModule.cs プロジェクト: chidionyema/nethermind
        public ResultWrapper <BigInteger?> eth_newBlockFilter()
        {
            int filterId = _blockchainBridge.NewBlockFilter();

            return(ResultWrapper <BigInteger?> .Success(filterId));
        }
コード例 #3
0
ファイル: EthModule.cs プロジェクト: aboussetta/nethermind
        public ResultWrapper <Quantity> eth_newBlockFilter()
        {
            int filterId = _blockchainBridge.NewBlockFilter();

            return(ResultWrapper <Quantity> .Success(new Quantity(filterId)));
        }