Code Monkey home page Code Monkey logo

Comments (5)

stefanzarembinski avatar stefanzarembinski commented on July 20, 2024

Thank you for the suggestion. I will take it.

from eosfactory.

stefanzarembinski avatar stefanzarembinski commented on July 20, 2024

The PR is included into the release 3.1.1.

With the following test script:

# .............................................................................

HOST.push_action(
    "create",
    {
        "issuer": MASTER,
        "maximum_supply": "1000000000.0000 EOS",
        "can_freeze": "0",
        "can_recall": "0",
        "can_whitelist": "0"
    },
    force_unique=True,
    permission=[(MASTER, Permission.ACTIVE), (HOST, Permission.ACTIVE)])
logger.DEBUG(HOST.action.act)

HOST.push_action(
    "issue",
    {
        "to": ALICE, "quantity": "100.0000 EOS", "memo": ""
    },
    force_unique=True,
    permission=(MASTER, Permission.ACTIVE))
logger.DEBUG(HOST.action.act)

#..............................................................................

It results in the

* push action ``create``:
{"issuer": "eosio", "maximum_supply": "1000000000.0000 EOS", "can_freeze": "0", "can_recall": "0", "can_whitelist": "0"}
eosio.null <= eosio.null::nonce 335ed53171880500
HOST <= HOST::create {'issuer': 'eosio', 'maximum_supply': '1000000000.0000 EOS'}
* push action ``issue``:
{"to": "ALICE", "quantity": "100.0000 EOS", "memo": ""}
eosio.null <= eosio.null::nonce 8c7fd73171880500
HOST <= HOST::issue {'to': 'ALICE', 'quantity': '100.0000 EOS', 'memo': ''}

Is it what you have expected?

from eosfactory.

ysoftware avatar ysoftware commented on July 20, 2024

Is it what you have expected?

Not quite. Can you look at #155 ? I created that PR with the fix. You can better understand what's going on in there.

from eosfactory.

ysoftware avatar ysoftware commented on July 20, 2024

At the very least, in your logs I don't see any console output.
(although looking at your code, that is exactly what you did and it should work)

from eosfactory.

stefanzarembinski avatar stefanzarembinski commented on July 20, 2024

The PR is included into the release 3.1.1.

I have seen the PR. You want to collect the trace["console"] items...

self.console = ""
    for trace in self.json["processed"]["action_traces"]:
        self.console += trace["console"]

... and it is done so. But the console thing is empty, for me, as it comes from the blockchain. In my opinion, it contains the output from the print function in the source code.

If the test script is ...

HOST.push_action(
    "create",
    {
        "issuer": MASTER,
        "maximum_supply": "1000000000.0000 EOS",
        "can_freeze": "0",
        "can_recall": "0",
        "can_whitelist": "0"
    },
    force_unique=True,
    permission=[(MASTER, Permission.ACTIVE), (HOST, Permission.ACTIVE)])
print("'trace[\"console\"]' sum is '{}'".format(HOST.action.console))
logger.DEBUG(HOST.action.act)

HOST.push_action(
    "issue",
    {
        "to": ALICE, "quantity": "100.0000 EOS", "memo": ""
    },
    force_unique=True,
    permission=(MASTER, Permission.ACTIVE))
print("'trace[\"console\"]' sum is '{}'".format(HOST.action.console))
logger.DEBUG(HOST.action.act)

... the output is

* push action ``create``:
{"issuer": "eosio", "maximum_supply": "1000000000.0000 EOS", "can_freeze": "0", "can_recall": "0", "can_whitelist": "0"}
'trace["console"]' sum is ''
eosio.null <= eosio.null::nonce d99d361572880500
HOST <= HOST::create {'issuer': 'eosio', 'maximum_supply': '1000000000.0000 EOS'}
* push action ``issue``:
{"to": "ALICE", "quantity": "100.0000 EOS", "memo": ""}
'trace["console"]' sum is ''
eosio.null <= eosio.null::nonce 76b3381572880500
HOST <= HOST::issue {'to': 'ALICE', 'quantity': '100.0000 EOS', 'memo': ''}

from eosfactory.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.