错误:找不到模块“ secp256k1”(运行我在lotionjs官方网站上找到的代码时得到此信息)

时间:2018-10-23 12:32:21

标签: node.js cryptocurrency lotionjs

这是在lotionjs官方网站(https://lotionjs.com/)上运行代码后出现的错误提示,说让我们在乳液上制造新硬币

Sub sumYes()
    Dim i As Long, str As String, dbl As Double

    With Worksheets("Sheet10")
        For i = 2 To .Cells(.Rows.Count, "A").End(xlUp).Row
            str = LCase(.Cells(i, "A").Value2)
            If Split(str, "/")(UBound(Split(str, "/"))) = "yes" Then
                If CBool(InStr(1, str, Chr(36))) Then
                    dbl = dbl + Val(Mid(str, InStr(1, str, Chr(36)) + 1))
                End If
            End If
        Next i
        .Cells(2, "B") = dbl
    End With

End Sub

0 个答案:

没有答案