-
Notifications
You must be signed in to change notification settings - Fork 51
Open
Description
After running the below code, block shows up in the .csipfs folder but using the ipfs.io link does not have it show up. What am I missing?
https://ipfs.io/ipfs/QmW6kQdgmoJcm2zhSa5m99PGQFTdLSQ6jS6KyH2wxSkE9f
Also, I have tested this from a docker container in the same box with ipfs installed and that has strings showing up near instantly on the page.
Note: If you are testing out the below code, please do replace "Prime Minister Aubsh" with something else so that you don't accidentally not reproduce the issue. Edit: It now shows up from the link above so you will need to switch out the string with some other random string to demo the issue.
Thanks for your help!
static void Main(string[] args)
{
AnAsyncThread().Wait();
}
static async Task AnAsyncThread()
{
var ipfs = new IpfsEngine("test".ToCharArray());
await ipfs.StartAsync();
await ipfs.FileSystem.AddTextAsync("Prime Minister Aubsh");
while(true)
{
Thread.Sleep(90000);
}
}Metadata
Metadata
Assignees
Labels
No labels